1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00

Fix combobox sometimes showing a value of 'undefined'

This commit is contained in:
Andrew Kingston 2021-06-17 12:19:05 +01:00
parent a522a87ee8
commit 52e544068b

View file

@ -63,9 +63,9 @@
on:focus={() => (focus = true)}
on:blur={() => (focus = false)}
on:change={onChange}
{value}
value={value || ""}
placeholder={placeholder || ""}
{disabled}
{placeholder}
class="spectrum-Textfield-input spectrum-InputGroup-input"
/>
</div>