From 51ba50c0c6a624f8bfb128ee3de838f1b0692e40 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Fri, 17 Nov 2023 10:54:00 -0500 Subject: [PATCH] Fixed layouts --- www/views/index.html | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/www/views/index.html b/www/views/index.html index 95db5b1..291bdbe 100644 --- a/www/views/index.html +++ b/www/views/index.html @@ -29,14 +29,14 @@ - - - - - - - - + + + + + + + + @@ -131,17 +131,17 @@ // Get the elements we need to update const statusTable = document.getElementById('status-table'); - const igniterStatus = statusTable.rows[0].cells[1]; - const exhaustStatus = statusTable.rows[1].cells[1]; - const augerStatus = statusTable.rows[2].cells[1]; + const igniterStatus = statusTable.rows[1].cells[1]; + const exhaustStatus = statusTable.rows[2].cells[1]; + const augerStatus = statusTable.rows[0].cells[1]; const feedRate = statusTable.rows[3].cells[1]; const feedRateSelect = document.getElementById('feed-rate-select'); // console.log(config); - augerStatus.innerHTML = parseStatus(config.status.auger); igniterStatus.innerHTML = parseStatus(config.status.igniter); exhaustStatus.innerHTML = parseStatus(config.status.exhaust); + augerStatus.innerHTML = parseStatus(config.status.auger); switch (config.intervals.augerOn) { case '500':
Igniter
Exhaust
Igniter
Exhaust
Auger