From 1899165d7f3641d236c4d9a333873ae9ffc75861 Mon Sep 17 00:00:00 2001 From: Jo Date: Tue, 7 Jul 2026 13:21:03 +0200 Subject: [PATCH] fix: gantt starts 12h before now to show running slots --- templates/planning.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/planning.html b/templates/planning.html index 29ce888..ce482ba 100644 --- a/templates/planning.html +++ b/templates/planning.html @@ -363,7 +363,7 @@ async function initTimeline() { document.getElementById('timeline'), items, groups, { - start: now, + start: new Date(now.getTime() - 12 * 3600000), end: new Date(now.getTime() + 14 * 86400000), groupOrder: 'id', selectable: true,