From 2bf99cf2d0bcd3dc29aba4dda116d256d1587b19 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 18 Feb 2026 21:51:57 +0100 Subject: [PATCH] chore: fix lint issue from gantt partial dates feature --- frontend/src/components/gantt/GanttRowBars.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/gantt/GanttRowBars.vue b/frontend/src/components/gantt/GanttRowBars.vue index bc6434d0e..735e6b92d 100644 --- a/frontend/src/components/gantt/GanttRowBars.vue +++ b/frontend/src/components/gantt/GanttRowBars.vue @@ -144,8 +144,6 @@ import {roundToNaturalDayBoundary} from '@/helpers/time/roundToNaturalDayBoundar import GanttBarPrimitive from './primitives/GanttBarPrimitive.vue' -const {t} = useI18n({useScope: 'global'}) - const props = defineProps<{ bars: GanttBarModel[] totalWidth: number @@ -173,6 +171,8 @@ const emit = defineEmits<{ (e: 'updateTask', id: string, newStart: Date, newEnd: Date): void }>() +const {t} = useI18n({useScope: 'global'}) + const RESIZE_HANDLE_OFFSET = 3 function addDays(dateOrValue: Date | string | number, days: number): Date {