Merge pull request #5309 from Ronid1/bug/5133-sequence_diagram_fix_arrow_corner

bug/5133 sequence diagram fix arrow corner
This commit is contained in:
Sidharth Vinod
2024-03-23 11:46:20 +05:30
committed by GitHub

View File

@@ -736,7 +736,7 @@ export const insertArrowHead = function (elem) {
.attr('markerHeight', 12) .attr('markerHeight', 12)
.attr('orient', 'auto') .attr('orient', 'auto')
.append('path') .append('path')
.attr('d', 'M 0 0 L 10 5 L 0 10 z'); // this is actual shape for arrowhead .attr('d', 'M -1 0 L 10 5 L 0 10 z'); // this is actual shape for arrowhead
}; };
/** /**