@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
14 lines (13 loc) • 545 B
HTML
<div class="form-group">
<div class="col-md-5 sm-label-right"><b>Key Name</b></div>
<div class="col-md-6">
<ui-select ng-model="$ctrl.command.keyPair" class="form-control input-sm" required on-select="$ctrl.fieldChanged()">
<ui-select-match>{{$select.selected}}</ui-select-match>
<ui-select-choices
repeat="regionalKeyPair in $ctrl.command.backingData.filtered.keyPairs | filter: $select.search"
>
<span ng-bind-html="regionalKeyPair"></span>
</ui-select-choices>
</ui-select>
</div>
</div>