1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +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
disabled={expression.noValue}
options={[
{ label: "True", value: true },
{ label: "False", value: false },
{ label: "True", value: "true" },
{ label: "False", value: "false" },
]}
bind:value={expression.value}
/>