@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
30 lines (28 loc) • 790 B
HTML
<div class="row">
<div class="col-md-10 col-md-offset-1">
<select
class="form-control input-sm"
style="width: 65px"
required
ng-model="$ctrl.viewState.operator"
ng-change="$ctrl.operatorChanged()"
ng-options="adjustment for adjustment in $ctrl.availableActions"
></select>
<input
type="number"
min="0"
class="form-control input-sm"
style="width: 65px"
required
ng-model="$ctrl.command.simple.scalingAdjustment"
/>
<select
class="form-control input-sm"
style="width: 110px"
required
ng-model="$ctrl.viewState.adjustmentType"
ng-change="$ctrl.adjustmentTypeChanged()"
ng-options="option for option in $ctrl.adjustmentTypeOptions"
></select>
</div>
</div>