Handle original mappings

This commit is contained in:
Mel O'Hagan 2022-11-21 15:02:44 +00:00
parent 9a3209cc56
commit 51f8f114d8
1 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,8 @@
if (schema[field.name]) {
clonedSchema[field.name] = schema[field.name]
clonedSchema[field.name].displayName = field.displayName
} else if (schema[field]) {
clonedSchema[field] = schema[field]
}
})
}