We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4270f36 commit 859653eCopy full SHA for 859653e
client/packages/lowcoder/src/comps/generators/withSelectedMultiContext.tsx
@@ -86,7 +86,12 @@ export function withSelectedMultiContext<TCtor extends MultiCompConstructor>(
86
action.editDSL
87
|| isCustomAction<LazyCompReadyAction>(action, "LazyCompReady")
88
|| isCustomAction<ModuleReadyAction>(action, "moduleReady")
89
- ) && action.path[1] === SELECTED_KEY) {
+ ) && (
90
+ action.path[1] === SELECTED_KEY
91
+ || ( // special check added for modules inside list view
92
+ isCustomAction<ModuleReadyAction>(action, "moduleReady")
93
+ && action.path[1] === this.selection)
94
+ )) {
95
// broadcast
96
const newAction = {
97
...action,
0 commit comments