1
0
Fork 0
mirror of synced 2024-08-14 17:42:01 +12:00

Fix crash when converting form fields with a schema that doesn't contain a certain field

This commit is contained in:
Andrew Kingston 2023-09-04 09:05:33 +01:00
parent 401c12732f
commit cf33680b1e

View file

@ -955,7 +955,9 @@ export const buildFormSchema = (component, asset) => {
const patched = convertOldFieldFormat(component.fields || [])
patched?.forEach(({ field, active }) => {
if (!active) return
schema[field] = { type: info?.schema[field].type }
if (info?.schema[field]) {
schema[field] = { type: info?.schema[field].type }
}
})
}