Standard Select Componet:added blank option
This commit is contained in:
parent
5c8c6b5ce3
commit
e3b6dffda5
|
@ -20,6 +20,7 @@ const onchange = (ev) => {
|
||||||
<select class={className}
|
<select class={className}
|
||||||
value={value}
|
value={value}
|
||||||
on:change={onchange}>
|
on:change={onchange}>
|
||||||
|
<option></option>
|
||||||
{#each options as opt}
|
{#each options as opt}
|
||||||
<option id={opt.id ? opt.id : opt.value}>{opt.value}</option>
|
<option id={opt.id ? opt.id : opt.value}>{opt.value}</option>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
Loading…
Reference in New Issue