diff --git a/src/utils/formUtil/index.ts b/src/utils/formUtil/index.ts index e404b156..394769b3 100644 --- a/src/utils/formUtil/index.ts +++ b/src/utils/formUtil/index.ts @@ -559,9 +559,6 @@ export function getComponentLocalData(paths: ComponentPaths, data: any, local?: export function shouldProcessComponent(comp: Component, row: any, value: any): boolean { if (getModelType(comp) === 'dataObject') { - if (isEmpty(row)) { - return false; - } const noReferenceAttached = value?._id ? isEmpty(value.data) && !has(value, 'form') : false; const shouldBeCleared = (!comp.hasOwnProperty('clearOnHide') || comp.clearOnHide) &&