We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128d4ed commit ba1d802Copy full SHA for ba1d802
openatlas/static/js/network.js
@@ -27,10 +27,10 @@ const node = g.append('g')
27
.data(graph.nodes)
28
.enter().append('g')
29
30
-// This was unused
31
-// const circles = node.append('circle')
32
-// .attr('r', 12)
33
-// .attr('fill', function(d) { return d.color; });
+
+const circles = node.append('circle')
+ .attr('r', 12)
+ .attr('fill', function(d) { return d.color; });
34
35
const labels = node.append('text')
36
.text(function(d) { return d.name; })
0 commit comments