Check schema exists for default value
This commit is contained in:
parent
841b3b62c0
commit
40dfa8c049
|
@ -131,7 +131,7 @@
|
||||||
const getDefault = (defaultValue, schema, type) => {
|
const getDefault = (defaultValue, schema, type) => {
|
||||||
// Remove any values not present in the field schema
|
// Remove any values not present in the field schema
|
||||||
// Convert any values supplied to string
|
// Convert any values supplied to string
|
||||||
if (Array.isArray(defaultValue) && type == "array") {
|
if (Array.isArray(defaultValue) && type == "array" && schema) {
|
||||||
return defaultValue.reduce((acc, entry) => {
|
return defaultValue.reduce((acc, entry) => {
|
||||||
let processedOption = String(entry)
|
let processedOption = String(entry)
|
||||||
let schemaOptions = schema.constraints.inclusion
|
let schemaOptions = schema.constraints.inclusion
|
||||||
|
|
Loading…
Reference in New Issue