From a8354991d6a5a1da3a3ce43e5953650f8d33d362 Mon Sep 17 00:00:00 2001 From: alexandraRamanenka <60643585+alexandraRamanenka@users.noreply.github.com> Date: Mon, 16 Dec 2024 23:33:09 +0200 Subject: [PATCH] FIO-9266/FIO-9267/FIO-9268: Fixes an issue where nested form validation will be skipped if parent form submits empty data (#203) --- src/utils/formUtil/index.ts | 3 --- 1 file changed, 3 deletions(-) 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) &&