Skip to content

Commit

Permalink
CELE-32 fix: Fix group style on creation
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsobspinto committed Jul 19, 2024
1 parent 614246b commit 26a7bcd
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@ export const computeGraphDifferences = (cy: Core, connections: Connection[], wor
const group = workspace.neuronGroups[groupId];
groupNodes.add(groupId);
if (!currentNodes.has(groupId)) {
nodesToAdd.push({
group: 'nodes',
data: { id: groupId, label: group.name },
classes: '',
});
nodesToAdd.push(createNode(groupId, workspace.selectedNeurons.has(groupId)));
}
}

Expand Down

0 comments on commit 26a7bcd

Please sign in to comment.