mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-28 02:55:55 +00:00
9 lines
329 B
Handlebars
9 lines
329 B
Handlebars
{{!-- TODO: DSS-6122 Add label for select--}}
|
|
<select {{action "change" on="change"}} disabled={{disabled}}>
|
|
{{#each content as |option|}}
|
|
<option value="{{option.value}}" selected={{option.isSelected}} disabled={{option.isDisabled}}>
|
|
{{if option.label option.label option.value}}
|
|
</option>
|
|
{{/each}}
|
|
</select>
|