From e1b3e71a9c768788878be333d704c0483f20178b Mon Sep 17 00:00:00 2001 From: Lichene Date: Fri, 14 Nov 2025 13:38:22 +0100 Subject: [PATCH] notes links invisible fix --- public/js/arf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/arf.js b/public/js/arf.js index c2ef7b8..87e0c37 100644 --- a/public/js/arf.js +++ b/public/js/arf.js @@ -121,7 +121,7 @@ function update(source) { .attr("dy", ".35em") .attr("text-anchor", "start") .text("[Notes]") - .style("fill", "blue") + .style("fill", "brown") .style("fill-opacity", 1e-6) .style("text-decoration", "underline"); // END OF NEW CODE @@ -146,7 +146,7 @@ function update(source) { }); //nodeUpdate.select("text").style("fill-opacity", 1); - nodeUpdate.selectAll("text").style("fill-opacity", 1); + //nodeUpdate.selectAll("text").style("fill-opacity", 1); // Transition exiting nodes to the parent's new position. var nodeExit = node .exit()