From 8005a2fb92fc6d33b8aacbc8fdda74c527e29a3a Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 2 Mar 2026 09:04:34 +0100 Subject: [PATCH] feat(gantt): add expand=subtasks to Gantt API params --- frontend/src/views/project/helpers/useGanttFilters.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/project/helpers/useGanttFilters.ts b/frontend/src/views/project/helpers/useGanttFilters.ts index edb3cdf04..1877ab9fd 100644 --- a/frontend/src/views/project/helpers/useGanttFilters.ts +++ b/frontend/src/views/project/helpers/useGanttFilters.ts @@ -100,6 +100,7 @@ function ganttFiltersToApiParams(filters: GanttFilters): TaskFilterParams { '(start_date <= "' + dateFrom + '" && end_date >= "' + dateTo + '")' + ')', filter_include_nulls: filters.showTasksWithoutDates, + expand: 'subtasks', } }