From f77f14a91fbde569c0dcef049353eaa38dd30d75 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 21 Jul 2022 00:20:49 +0200 Subject: [PATCH] fix: make sure the date format is actually valid --- src/components/tasks/gantt-chart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tasks/gantt-chart.vue b/src/components/tasks/gantt-chart.vue index af863c0b..9713c0fd 100644 --- a/src/components/tasks/gantt-chart.vue +++ b/src/components/tasks/gantt-chart.vue @@ -63,7 +63,7 @@ import Rights from '../../models/constants/rights.json' import TaskModel from '@/models/task' import {useRouter} from 'vue-router' -const dateFormat = 'yyyy-LL-dd kk:mm' +const dateFormat = 'yyyy-LL-dd HH:mm' const store = useStore() const router = useRouter()