Skip to content

Commit

Permalink
fix: node link
Browse files Browse the repository at this point in the history
  • Loading branch information
Myllaume committed Sep 20, 2024
1 parent 7799d85 commit 3504ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/frontend/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ elts.nodes = svgSub

elts.nodes.each(function (d) {
const node = d3.select(this);
const link = node.append('a').attr('href', (d) => '#' + d.id);
const link = node.append('a').attr('href', (d) => '#' + d.key);

const getFill = (fill) => {
if (imageFileValidExtnames.has(fill.split('.').at(-1))) {
Expand Down

0 comments on commit 3504ca1

Please sign in to comment.