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 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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user