diff --git a/frontend/src/components/gantt/GanttRowBars.vue b/frontend/src/components/gantt/GanttRowBars.vue index 735e6b92d..e4210746f 100644 --- a/frontend/src/components/gantt/GanttRowBars.vue +++ b/frontend/src/components/gantt/GanttRowBars.vue @@ -120,6 +120,7 @@ (bar: GanttBarModel) => { }) const getBarTextX = computed(() => (bar: GanttBarModel) => { + if (bar.meta?.dateType === 'endOnly') { + return getBarX.value(bar) + getBarWidth.value(bar) - 8 + } return getBarX.value(bar) + 8 })