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