1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Merge pull request #2780 from Budibase/fix-filter-editor

Fix bug with filter editor preventing some types being filtered
This commit is contained in:
Martin McKeaveney 2021-09-29 09:56:38 +01:00 committed by GitHub
commit 2657a685f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,7 @@
/>
{:else if ["string", "longform", "number"].includes(filter.type)}
<Input disabled={filter.noValue} bind:value={filter.value} />
{:else if filter.type === "options" || "array"}
{:else if ["options", "array"].includes(filter.type)}
<Combobox
disabled={filter.noValue}
options={getFieldOptions(filter.field)}