From eb66edb902bf0b601c31d9e83e51e11439e59e49 Mon Sep 17 00:00:00 2001 From: Reimar Date: Wed, 2 Apr 2025 13:48:59 +0200 Subject: [PATCH] Fix Chrome issues --- frontend/scripts/home.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/frontend/scripts/home.js b/frontend/scripts/home.js index 3ee54b6..f39c97d 100644 --- a/frontend/scripts/home.js +++ b/frontend/scripts/home.js @@ -78,8 +78,8 @@ function randomColorChannelValue() { async function fetchData() { document.body.classList.add("loading"); - const startDate = document.getElementById("period-start").valueAsDate?.toISOString(); - const endDate = document.getElementById("period-end").valueAsDate?.toISOString(); + const startDate = document.getElementById("period-start").value; + const endDate = document.getElementById("period-end").value; const deviceData = []; @@ -154,8 +154,14 @@ async function fetchData() { } function setPeriod(start, end) { - document.getElementById("period-start").valueAsDate = start && new Date(start); - document.getElementById("period-end").valueAsDate = start && new Date(end); + const startDate = start && new Date(start); + startDate?.setMinutes(startDate.getMinutes() - startDate.getTimezoneOffset()); + + const endDate = start && new Date(end); + endDate?.setMinutes(endDate.getMinutes() - endDate.getTimezoneOffset()); + + document.getElementById("period-start").value = startDate?.toISOString().slice(0, 16); + document.getElementById("period-end").value = endDate?.toISOString().slice(0, 16); fetchData(); }