From 3a09e57b3975ae4d02dac6ecf8cb41e9c4d1c3cf Mon Sep 17 00:00:00 2001 From: mikekotikov Date: Fri, 27 Dec 2024 17:44:03 +0300 Subject: [PATCH] FIO-9508: Fix vm tests failing --- src/utils/formUtil/eachComponentData.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/formUtil/eachComponentData.ts b/src/utils/formUtil/eachComponentData.ts index 54aa7d5f..3eb68369 100644 --- a/src/utils/formUtil/eachComponentData.ts +++ b/src/utils/formUtil/eachComponentData.ts @@ -84,6 +84,9 @@ export const eachComponentData = ( ); } } + else { + eachComponentData(component.components, data, fn, includeAll, local, component, compPaths); + } resetComponentScope(component); return true; } else {