Merge branch 'master' into cloudflare/workers-autoconfig

This commit is contained in:
s0lray
2026-03-23 20:29:27 -04:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
-1
View File
@@ -57,7 +57,6 @@
}
]
},
null,
{
"name": "Specific Sites",
"type": "folder",
+3 -1
View File
@@ -19,7 +19,9 @@ var vis = d3.select("#body").append("svg")
.attr("transform", "translate(" + margin[3] + "," + margin[0] + ")");
d3.json("arf.json").then(function(json) {
root = d3.hierarchy(json);
root = d3.hierarchy(json, function(d) {
return d && d.children ? d.children.filter(function(c) { return c != null; }) : null;
});
root.x0 = height / 2;
root.y0 = 0;