Skip to content

Commit 686e56a

Browse files
authored
NodeBuilder: Fix shared group detection. (#32913)
1 parent f2beb96 commit 686e56a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nodes/core/NodeBuilder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ class NodeBuilder {
584584

585585
bindingsArray.push( binding );
586586

587-
sharedGroup = sharedGroup && binding.groupNode.shared !== true;
587+
sharedGroup = sharedGroup && binding.groupNode.shared;
588588

589589
}
590590

0 commit comments

Comments
 (0)