1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

flip bools to strings

This commit is contained in:
Martin McKeaveney 2021-05-27 08:21:05 +01:00
parent b830265b89
commit 76620a5083

View file

@ -197,8 +197,8 @@
<Combobox <Combobox
disabled={expression.noValue} disabled={expression.noValue}
options={[ options={[
{ label: "True", value: true }, { label: "True", value: "true" },
{ label: "False", value: false }, { label: "False", value: "false" },
]} ]}
bind:value={expression.value} bind:value={expression.value}
/> />