mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 15:26:39 +00:00
9c001fabd9
WTD-610 Fixed markup in select.html; Rebuilt associated CSS in _selects.scss; Still to-do: checkbox valign and spacing Conflicts: platform/commonUI/general/res/css/forms.css platform/commonUI/general/res/css/items.css platform/commonUI/general/res/css/theme-espresso.css platform/commonUI/general/res/css/tree.css
10 lines
291 B
HTML
10 lines
291 B
HTML
<div class='form-control select'>
|
|
<select
|
|
ng-model="ngModel[field]"
|
|
ng-options="opt.value as opt.name for opt in options"
|
|
ng-required="ngRequired"
|
|
name="mctControl">
|
|
<option value="" ng-if="!ngModel[field]">- Select One -</option>
|
|
</select>
|
|
</div>
|