We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c83ede7 commit b5fb814Copy full SHA for b5fb814
src/clustersOfInterest.js
@@ -689,9 +689,9 @@ function open_editor(
689
}
690
691
_.each(nodes_to_add, (n) => {
692
- if (!(n in existing_ids) && n in valid_ids) {
693
- panel_object._append_node(valid_ids[n]);
694
- existing_ids[n] = 1;
+ if (!(n.id in existing_ids) && n.id in valid_ids) {
+ panel_object._append_node(valid_ids[n.id]);
+ existing_ids[n.id] = 1;
695
need_update = true;
696
} else {
697
console.log("***", n);
0 commit comments