We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd0165e commit bea0944Copy full SHA for bea0944
1 file changed
src/Visualiser/wwwroot/js/network.js
@@ -460,7 +460,7 @@ function reassignNode(node, toClusterId) {
460
let edges = dataset.edges.get({ filter: (edge) => edge.from === node.id || edge.to === node.id });
461
edges.forEach(edge => dataset.edges.remove(edge.id));
462
463
- const fromClusterId = node.id;
+ const fromClusterId = node.group;
464
465
// Destroy target cluster
466
if (isCluster(toClusterId)) {
0 commit comments