Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4564f commit b6d9047Copy full SHA for b6d9047
client/packages/lowcoder/src/comps/generators/withSelectedMultiContext.tsx
@@ -96,8 +96,10 @@ export function withSelectedMultiContext<TCtor extends MultiCompConstructor>(
96
comp = comp.reduce(wrapChildAction(COMP_KEY, newAction));
97
} else if (
98
!action.editDSL
99
- && isCustomAction<ModuleReadyAction>(action, "moduleReady")
100
- && action.path[0] === MAP_KEY
+ && (
+ isCustomAction<ModuleReadyAction>(action, "moduleReady")
101
+ || isCustomAction<LazyCompReadyAction>(action, "LazyCompReady")
102
+ ) && action.path[0] === MAP_KEY
103
) {
104
comp = super.reduce(action);
105
}
0 commit comments