Fix data bindings from JSON fields not correctly squashing nested structures beyond the first level
This commit is contained in:
parent
ca0abba428
commit
d1b5716252
|
@ -28,7 +28,10 @@ const extractJSONSchemaKeys = (jsonSchema, squashObjects = false) => {
|
|||
Object.keys(jsonSchema).forEach(key => {
|
||||
const type = jsonSchema[key].type
|
||||
if (type === "json" && squashObjects) {
|
||||
const childKeys = extractJSONSchemaKeys(jsonSchema[key].schema)
|
||||
const childKeys = extractJSONSchemaKeys(
|
||||
jsonSchema[key].schema,
|
||||
squashObjects
|
||||
)
|
||||
keys = keys.concat(
|
||||
childKeys.map(childKey => ({
|
||||
key: `${key}.${childKey.key}`,
|
||||
|
|
Loading…
Reference in New Issue