We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d7a31 commit e7937dcCopy full SHA for e7937dc
src/browser/modules/D3Visualization/lib/visualization/components/graph.js
@@ -82,7 +82,7 @@ export default class Graph {
82
this.nodeMap[eNode.id] = eNode
83
this._nodes.push(eNode)
84
this.expandedNodeMap[node.id] = this.expandedNodeMap[node.id]
85
- ? this.expandedNodeMap[node.id].concat([eNode.id])
+ ? [...new Set(this.expandedNodeMap[node.id].concat([eNode.id]))]
86
: [eNode.id]
87
}
88
0 commit comments