test
Some checks failed
Updates the graph by copying the updated files in the right directory / build-and-deploy (push) Failing after 3s

This commit is contained in:
Lichene 2025-11-14 12:42:43 +01:00
parent 794d4f04ca
commit beb1b5ee4b
3 changed files with 4 additions and 1 deletions

View file

@ -29,7 +29,7 @@
Git: <a href="https://git.hackinpovo.it/HackInPovo/resources.git">link</a>
<h3>Suggestions, Comments, Feedback</h3>
Feedback or new tool suggestions are extremely welcome!
Feedback or new tool suggestions are extremely welcome!!
</body>

View file

@ -99,6 +99,7 @@ function update(source) {
return d.free ? "black" : "#999";
})
.style("fill-opacity", 1e-6);
nodeEnter
.filter(function (d) {
return !d.children && !d._children;
@ -126,6 +127,7 @@ function update(source) {
.style("fill", "blue")
.style("fill-opacity", 1e-6)
.style("text-decoration", "underline");
nodeEnter.append("svg:title").text(function (d) {
return d.description;
});