funky-framadate-front/src/app/ui/selector/selector.component.html

11 lines
299 B
HTML

<select
class="custom-selector"
name="{{ selectorConfig.name }}"
id="{{ selectorConfig.id }}"
[(ngModel)]="selectorConfig.selectorNgModel"
>
<option value="{{ item.value }}" selected *ngFor="let item of selectorConfig.listItems">
{{ item.label }}
</option>
</select>