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:
commit
1a60708e3a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue