mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 01:22:00 +00:00
9 lines
298 B
Handlebars
9 lines
298 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}}>
|
|
{{if option.label option.label option.value}}
|
|
</option>
|
|
{{/each}}
|
|
</select>
|