Merge pull request #8669 from Budibase/fix/view-array-filter-options

Added multiselect/array options support to the view contains filter
This commit is contained in:
deanhannigan 2022-11-14 14:21:17 +00:00 committed by GitHub
commit bccacfe773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@
} }
function fieldOptions(field) { function fieldOptions(field) {
return schema[field]?.type === "options" return schema[field]?.type === "options" || schema[field]?.type === "array"
? schema[field]?.constraints.inclusion ? schema[field]?.constraints.inclusion
: [true, false] : [true, false]
} }