BugFix
All checks were successful
Updates the graph by copying the updated files in the right directory / build-and-deploy (push) Successful in 3s

This commit is contained in:
CawaAlreadyTaken 2025-11-16 10:39:16 +01:00
parent 01a3f0bde5
commit acc1902074

View file

@ -95,7 +95,8 @@ function update(source) {
return d.children || d._children ? "end" : "start"; return d.children || d._children ? "end" : "start";
}) })
.text(function (d) { .text(function (d) {
return d.name; // rimuove un eventuale " [N]" finale dal titolo
return d.name.replace(/\s*\[N\]$/, "");
}) })
.style("fill", function (d) { .style("fill", function (d) {
return d.free ? "black" : "#999"; return d.free ? "black" : "#999";