feat(gantt): add expand=subtasks to Gantt API params

This commit is contained in:
kolaente 2026-03-02 09:04:34 +01:00
parent 8b5ab62af9
commit 8005a2fb92
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ function ganttFiltersToApiParams(filters: GanttFilters): TaskFilterParams {
'(start_date <= "' + dateFrom + '" && end_date >= "' + dateTo + '")' +
')',
filter_include_nulls: filters.showTasksWithoutDates,
expand: 'subtasks',
}
}