#10699 Fixed central node

This commit is contained in:
Daniel Maya 2023-03-28 11:03:59 +02:00
parent 712da9070f
commit 490e547202

View File

@ -3886,6 +3886,9 @@ function draw_elements_graph() {
.attr("node_id", function(d) { .attr("node_id", function(d) {
return d.id + networkmap_id; return d.id + networkmap_id;
}) })
.attr("style", function(d) {
return d.id === 0 ? "filter: invert(0%)" : "";
})
.attr("id", "image2995") .attr("id", "image2995")
.classed("dragable_node", true) //own dragable .classed("dragable_node", true) //own dragable
.on("mouseover", function(d) { .on("mouseover", function(d) {