Skip to content

Commit

Permalink
Fixed fragment rendering issue see #232. Alt fragment.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCoder committed Dec 17, 2024
1 parent 4979b2c commit dfbc0cb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
/>
</div>
<block
:origin="origin"
:style="{ paddingLeft: `${offsetX}px` }"
:origin="leftParticipant"
:style="{ paddingLeft: `${paddingLeft}px` }"
:context="blockInElseIfBlock(elseIfBlock)"
:key="index + 2000"
:number="`${number}.${blockLengthAcc[index] + 1}`"
Expand All @@ -69,8 +69,8 @@
<label class="p-1">[else]</label>
</div>
<block
:origin="origin"
:style="{ paddingLeft: `${offsetX}px` }"
:origin="leftParticipant"
:style="{ paddingLeft: `${paddingLeft}px` }"
:context="elseBlock"
:number="`${number}.${
blockLengthAcc[blockLengthAcc.length - 1] + 1
Expand Down

0 comments on commit dfbc0cb

Please sign in to comment.