From c1da04eda1f29bb6c30d1d2ff5b2c9f3e9316f8a Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Tue, 18 Oct 2022 15:55:41 +0200 Subject: [PATCH] feat(gantt): add task collection to useGanttFilter --- src/components/tasks/gantt-chart.vue | 160 +++++------------------ src/message/index.ts | 2 +- src/modelTypes/ITask.ts | 6 +- src/types/PartialWithId.ts | 1 + src/views/list/ListGantt.vue | 39 +++++- src/views/list/helpers/useGanttFilter.ts | 103 ++++++++++++++- 6 files changed, 177 insertions(+), 134 deletions(-) create mode 100644 src/types/PartialWithId.ts diff --git a/src/components/tasks/gantt-chart.vue b/src/components/tasks/gantt-chart.vue index ad5b68ebd..d3f845174 100644 --- a/src/components/tasks/gantt-chart.vue +++ b/src/components/tasks/gantt-chart.vue @@ -1,19 +1,19 @@