From bb5d6dee3f6ebe3986caf6fd78485147e837163a Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 2 Mar 2026 11:11:07 +0100 Subject: [PATCH] fix(gantt): make relation arrows smaller and dash precedes lines --- .../components/gantt/GanttRelationArrows.vue | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/frontend/src/components/gantt/GanttRelationArrows.vue b/frontend/src/components/gantt/GanttRelationArrows.vue index a01a92b93..3f34fffc1 100644 --- a/frontend/src/components/gantt/GanttRelationArrows.vue +++ b/frontend/src/components/gantt/GanttRelationArrows.vue @@ -9,27 +9,27 @@ @@ -40,8 +40,9 @@ :key="`arrow-${index}`" :d="computePath(arrow)" :stroke="arrow.color" - stroke-width="2" + stroke-width="1.5" fill="none" + :stroke-dasharray="arrow.relationKind === 'precedes' ? '6,4' : 'none'" :marker-end="getMarkerEnd(arrow)" class="gantt-arrow" />