flip bools to strings

This commit is contained in:
Martin McKeaveney 2021-05-27 08:21:05 +01:00
parent f9c5975ac7
commit b04d153b11
1 changed files with 2 additions and 2 deletions

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}
/>