Merge pull request #6023 from yari-dewalt/fix_lollipop_stroke

Fix: Delete 'stroke: black' from lollipop marker so it matches themes and edge paths
This commit is contained in:
Justin Greywolf
2025-10-11 20:43:08 +00:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -130,7 +130,6 @@ const lollipop = (elem, type, id) => {
.attr('markerHeight', 240)
.attr('orient', 'auto')
.append('circle')
.attr('stroke', 'black')
.attr('fill', 'transparent')
.attr('cx', 7)
.attr('cy', 7)
@@ -147,7 +146,6 @@ const lollipop = (elem, type, id) => {
.attr('markerHeight', 240)
.attr('orient', 'auto')
.append('circle')
.attr('stroke', 'black')
.attr('fill', 'transparent')
.attr('cx', 7)
.attr('cy', 7)