We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86b8889 commit 6576346Copy full SHA for 6576346
packages/designer/src/builtin-simulator/host.ts
@@ -1167,12 +1167,10 @@ export class BuiltinSimulatorHost implements ISimulatorHost<BuiltinSimulatorProp
1167
return null;
1168
}
1169
const dropContainer = this.getDropContainer(e);
1170
- const childWhitelist = dropContainer?.container?.componentMeta?.childWhitelist;
1171
const lockedNode = getClosestNode(dropContainer?.container as Node, (node) => node.isLocked);
1172
if (lockedNode) return null;
1173
if (
1174
- !dropContainer ||
1175
- (nodes && typeof childWhitelist === 'function' && !childWhitelist(operationalNodes[0]))
+ !dropContainer
1176
) {
1177
1178
0 commit comments