Fix device list and table duplication
This commit is contained in:
parent
4f9ecfb43d
commit
59c78e5eac
@ -81,9 +81,6 @@ async function fetchData() {
|
|||||||
const startDate = document.getElementById("period-start").valueAsDate?.toISOString();
|
const startDate = document.getElementById("period-start").valueAsDate?.toISOString();
|
||||||
const endDate = document.getElementById("period-end").valueAsDate?.toISOString();
|
const endDate = document.getElementById("period-end").valueAsDate?.toISOString();
|
||||||
|
|
||||||
const devices = await getDevices()
|
|
||||||
.catch(handleError);
|
|
||||||
|
|
||||||
const deviceData = [];
|
const deviceData = [];
|
||||||
|
|
||||||
for (const device of devices) {
|
for (const device of devices) {
|
||||||
@ -99,6 +96,7 @@ async function fetchData() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
document.getElementById("table-body").innerHTML = "";
|
||||||
buildTable(deviceData[0]);
|
buildTable(deviceData[0]);
|
||||||
|
|
||||||
if (!chart) {
|
if (!chart) {
|
||||||
@ -181,6 +179,8 @@ document.getElementById("all-time").onclick = () => setPeriod(null, null);
|
|||||||
|
|
||||||
document.querySelector(".logout-container").addEventListener("click", logout);
|
document.querySelector(".logout-container").addEventListener("click", logout);
|
||||||
|
|
||||||
|
const devices = await getDevices().catch(handleError);
|
||||||
|
|
||||||
setPeriodLastDays(3);
|
setPeriodLastDays(3);
|
||||||
fetchData();
|
fetchData();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user