From 0d94386e997f3cc6f6cbaea7bf6ebe154862590a Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 21 May 2020 11:19:44 +0200 Subject: [PATCH] Fix gantt chart not updating when navigating between lists --- src/components/tasks/gantt-component.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/components/tasks/gantt-component.vue b/src/components/tasks/gantt-component.vue index 37155ee5d..628a95fe4 100644 --- a/src/components/tasks/gantt-component.vue +++ b/src/components/tasks/gantt-component.vue @@ -183,12 +183,9 @@ } }, watch: { - dateFrom() { - this.buildTheGanttChart() - }, - dateTo() { - this.buildTheGanttChart() - }, + 'dateFrom': 'buildTheGanttChart', + 'dateTo': 'buildTheGanttChart', + 'listId': 'parseTasks', }, created() { this.now = new Date()