1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

Add options picker for multiselect columns

This commit is contained in:
Andrew Kingston 2024-07-22 09:38:43 +01:00
parent 26a552ac5c
commit e4cd71feab
No known key found for this signature in database

View file

@ -9,6 +9,7 @@
Icon,
DatePicker,
Combobox,
Multiselect,
} from "@budibase/bbui"
import { createEventDispatcher } from "svelte"
import { cloneDeep } from "lodash"
@ -227,7 +228,7 @@
options={["True", "False"]}
bind:value={condition.referenceValue}
/>
{:else if type === FieldType.OPTIONS && condition.valueType === type}
{:else if (type === FieldType.OPTIONS || type === FieldType.ARRAY) && condition.valueType === type}
<Combobox
disabled={condition.noValue}
options={componentInstance.schema?.[componentInstance.field]