Skip to content

Commit

Permalink
Remove extra arrow and adjust cross position
Browse files Browse the repository at this point in the history
  • Loading branch information
ishuen committed Oct 28, 2022
1 parent c1529bb commit 8e64b31
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions packages/mermaid/src/diagrams/sequence/svgDraw.js
Expand Up @@ -752,7 +752,7 @@ export const insertSequenceNumber = function (elem) {
// .style("fill", '#f00');
};
/**
* Setup arrow head and define the marker. The result is appended to the svg.
* Setup cross head and define the marker. The result is appended to the svg.
*
* @param {any} elem
*/
Expand All @@ -764,18 +764,8 @@ export const insertArrowCrossHead = function (elem) {
.attr('markerWidth', 15)
.attr('markerHeight', 8)
.attr('orient', 'auto')
.attr('refX', 16)
.attr('refX', 7)
.attr('refY', 4);

// The arrow
marker
.append('path')
.attr('fill', 'black')
.attr('stroke', '#000000')
.style('stroke-dasharray', '0, 0')
.attr('stroke-width', '1px')
.attr('d', 'M 9,2 V 6 L16,4 Z');

// The cross
marker
.append('path')
Expand Down

0 comments on commit 8e64b31

Please sign in to comment.