Skip to content

Commit

Permalink
Merge pull request #5853 from jayaprabhakar/bug/5716_seq-actor-timeli…
Browse files Browse the repository at this point in the history
…ne-start

Sequence Diagram: Start participant timeline from the bottom of the participant
  • Loading branch information
sidharthv96 authored Sep 16, 2024
2 parents 1082605 + e564c39 commit 4bd1e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mermaid/src/diagrams/sequence/svgDraw.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ export const fixLifeLineHeights = (diagram, actors, actorKeys, conf) => {
const drawActorTypeParticipant = function (elem, actor, conf, isFooter) {
const actorY = isFooter ? actor.stopy : actor.starty;
const center = actor.x + actor.width / 2;
const centerY = actorY + 5;
const centerY = actorY + actor.height;

const boxplusLineGroup = elem.append('g').lower();
var g = boxplusLineGroup;
Expand Down

0 comments on commit 4bd1e5c

Please sign in to comment.