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:
commit
bccacfe773
|
@ -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]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue