fix
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m5s

This commit is contained in:
2025-11-22 02:25:04 -06:00
parent c4be9649b8
commit 8a7a409de6
2 changed files with 29 additions and 2 deletions

View File

@@ -81,6 +81,18 @@
class="transition-opacity duration-200"
:opacity="0.9"
/>
<!-- tramo diagonal suave (opcional) -->
<line
v-if="edge.toPos.x !== edge.fromPos.x"
:x1="edge.fromPos.x"
:y1="edge.midPos.y"
:x2="edge.toPos.x"
:y2="edge.toPos.y"
class="transition-opacity duration-200"
:opacity="0.4"
stroke-dasharray="4 6"
/>
</template>
</g>