Fix Chrome issues
This commit is contained in:
parent
b390d4a108
commit
eb66edb902
@ -78,8 +78,8 @@ function randomColorChannelValue() {
|
|||||||
async function fetchData() {
|
async function fetchData() {
|
||||||
document.body.classList.add("loading");
|
document.body.classList.add("loading");
|
||||||
|
|
||||||
const startDate = document.getElementById("period-start").valueAsDate?.toISOString();
|
const startDate = document.getElementById("period-start").value;
|
||||||
const endDate = document.getElementById("period-end").valueAsDate?.toISOString();
|
const endDate = document.getElementById("period-end").value;
|
||||||
|
|
||||||
const deviceData = [];
|
const deviceData = [];
|
||||||
|
|
||||||
@ -154,8 +154,14 @@ async function fetchData() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setPeriod(start, end) {
|
function setPeriod(start, end) {
|
||||||
document.getElementById("period-start").valueAsDate = start && new Date(start);
|
const startDate = start && new Date(start);
|
||||||
document.getElementById("period-end").valueAsDate = start && new Date(end);
|
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();
|
fetchData();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user