minor adjustment for double circle shape for drop-shadow

This commit is contained in:
omkarht
2025-01-23 15:17:34 +05:30
parent 9c89d3401a
commit 78c63d3dc1

View File

@@ -70,7 +70,8 @@ export async function doublecircle<T extends SVGGraphicsElement>(
.attr('style', nodeStyles) .attr('style', nodeStyles)
.attr('r', innerRadius) .attr('r', innerRadius)
.attr('cx', 0) .attr('cx', 0)
.attr('cy', 0); .attr('cy', 0)
.attr('style', 'filter:url("")');
} }
updateNodeBounds(node, circleGroup); updateNodeBounds(node, circleGroup);