Skip to content

Commit ba1d802

Browse files
Fix for showing points at network display
1 parent 128d4ed commit ba1d802

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

openatlas/static/js/network.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ const node = g.append('g')
2727
.data(graph.nodes)
2828
.enter().append('g')
2929

30-
// This was unused
31-
// const circles = node.append('circle')
32-
// .attr('r', 12)
33-
// .attr('fill', function(d) { return d.color; });
30+
31+
const circles = node.append('circle')
32+
.attr('r', 12)
33+
.attr('fill', function(d) { return d.color; });
3434

3535
const labels = node.append('text')
3636
.text(function(d) { return d.name; })

0 commit comments

Comments
 (0)