feat(reactflowUtils.ts): add logic to deselect group node when expanding it
The changes in this commit add logic to deselect a group node when it is expanded in the ReactFlowUtils file. This is done by setting the 'selected' property of the group node to false. The purpose of this change is to ensure that when a group node is expanded, it is not selected by default.
This commit is contained in:
parent
21827a29ef
commit
5013df0f3f
1 changed files with 1 additions and 0 deletions
|
|
@ -843,6 +843,7 @@ export function expandGroupNode(
|
|||
gNodes[nodeIndex].data.node.template[field].show = show;
|
||||
gNodes[nodeIndex].data.node.template[field].advanced = advanced;
|
||||
gNodes[nodeIndex].data.node.template[field].display_name = display_name;
|
||||
gNodes[nodeIndex].selected=false;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue