Skip to content

Commit

Permalink
updated shadedProcess shape
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarht committed Aug 23, 2024
1 parent 99f7d65 commit 7d6a97e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const shadedProcess = async (parent: SVGAElement, node: Node) => {
const roughNode = rc.rectangle(x - 8, y, w + 16, h, options);
const l1 = rc.line(x, y, x, y + h, options);

shapeSvg.insert(() => l1, ':first-child');
const rect = shapeSvg.insert(() => roughNode, ':first-child');
const rect = shapeSvg.insert(() => l1, ':first-child');
rect.insert(() => roughNode, ':first-child');

rect.attr('class', 'basic label-container').attr('style', cssStyles);

Expand Down

0 comments on commit 7d6a97e

Please sign in to comment.