chore: fix lint issue from gantt partial dates feature

This commit is contained in:
kolaente
2026-02-18 21:51:57 +01:00
parent 65f92ac8d3
commit 2bf99cf2d0

View File

@@ -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 {