Skip to content
Snippets Groups Projects
Commit ad2ee655 authored by Matthias Konitzny's avatar Matthias Konitzny :fire:
Browse files

Bugfix for the color strip generation of the filter overlay.

parent c1c14d6a
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,10 @@ class FilterOverlay {
jQuery(relation).click((event) => this.toggleVisibility(event));
const colorStrip = Helpers.createDiv("rel-container", relation);
colorStrip.style.backgroundColor = this.graph.edgeColors[link];
colorStrip.style.backgroundColor =
this.type === "link"
? this.graph.edgeColors[link]
: this.graph.nodeColors[link];
colorStrip.style.width = 10 * chars + "px";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment