1
0
Fork 0
mirror of synced 2024-08-16 18:41:37 +12:00

Merge pull request #8527 from Budibase/bug/sev3/custom-options-multi-picker

Check schema exists for custom options multi picker
This commit is contained in:
melohagan 2022-11-04 20:28:48 +00:00 committed by GitHub
commit 1a60708e3a

View file

@ -131,7 +131,7 @@
const getDefault = (defaultValue, schema, type) => {
// Remove any values not present in the field schema
// Convert any values supplied to string
if (Array.isArray(defaultValue) && type == "array") {
if (Array.isArray(defaultValue) && type == "array" && schema) {
return defaultValue.reduce((acc, entry) => {
let processedOption = String(entry)
let schemaOptions = schema.constraints.inclusion