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