From eefa48052b8bf708cc1a9ede6c0f798f83675e52 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 18 Feb 2026 21:45:53 +0100 Subject: [PATCH] feat(gantt): add dateType field to GanttBarModel meta --- frontend/src/composables/useGanttBar.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/composables/useGanttBar.ts b/frontend/src/composables/useGanttBar.ts index a72ab13e8..6b3dffb1b 100644 --- a/frontend/src/composables/useGanttBar.ts +++ b/frontend/src/composables/useGanttBar.ts @@ -8,6 +8,7 @@ export interface GanttBarModel { label?: string color?: string hasActualDates?: boolean + dateType?: 'both' | 'startOnly' | 'endOnly' isDone?: boolean task?: unknown }