Fix device list and table duplication

This commit is contained in:
Reimar 2025-04-02 13:09:46 +02:00
parent 4f9ecfb43d
commit 59c78e5eac
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268

View File

@ -81,9 +81,6 @@ async function fetchData() {
const startDate = document.getElementById("period-start").valueAsDate?.toISOString();
const endDate = document.getElementById("period-end").valueAsDate?.toISOString();
const devices = await getDevices()
.catch(handleError);
const deviceData = [];
for (const device of devices) {
@ -99,6 +96,7 @@ async function fetchData() {
return;
}
document.getElementById("table-body").innerHTML = "";
buildTable(deviceData[0]);
if (!chart) {
@ -181,6 +179,8 @@ document.getElementById("all-time").onclick = () => setPeriod(null, null);
document.querySelector(".logout-container").addEventListener("click", logout);
const devices = await getDevices().catch(handleError);
setPeriodLastDays(3);
fetchData();