Skip to content

Commit 5eb4aba

Browse files
authored
fix: add empty value (#133)
1 parent 03bf29b commit 5eb4aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/wc/src/app/components/dynamic-select/dynamic-select.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[required]="required()"
1010
[valueState]="valueState()"
1111
>
12-
@for (item of dynamicValues; track item.value) {
12+
@for (item of [{ value: '', key: '' }].concat(dynamicValues); track item.value) {
1313
<ui5-option
1414
[value]="item.value"
1515
[selected]="item.value === value()"

0 commit comments

Comments
 (0)