Skip to content

Commit b6d9047

Browse files
fix table expanded view keeps loading issue
1 parent 4a4564f commit b6d9047

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

client/packages/lowcoder/src/comps/generators/withSelectedMultiContext.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,10 @@ export function withSelectedMultiContext<TCtor extends MultiCompConstructor>(
9696
comp = comp.reduce(wrapChildAction(COMP_KEY, newAction));
9797
} else if (
9898
!action.editDSL
99-
&& isCustomAction<ModuleReadyAction>(action, "moduleReady")
100-
&& action.path[0] === MAP_KEY
99+
&& (
100+
isCustomAction<ModuleReadyAction>(action, "moduleReady")
101+
|| isCustomAction<LazyCompReadyAction>(action, "LazyCompReady")
102+
) && action.path[0] === MAP_KEY
101103
) {
102104
comp = super.reduce(action);
103105
}

0 commit comments

Comments
 (0)