From 60657b2da61974b6bd2481c68cd1d73486f69da8 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Fri, 17 Nov 2023 10:57:37 -0500 Subject: [PATCH] Fixed table addresses --- www/views/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/views/index.html b/www/views/index.html index 291bdbe..654bd58 100644 --- a/www/views/index.html +++ b/www/views/index.html @@ -131,9 +131,9 @@ // Get the elements we need to update const statusTable = document.getElementById('status-table'); - const igniterStatus = statusTable.rows[1].cells[1]; - const exhaustStatus = statusTable.rows[2].cells[1]; - const augerStatus = statusTable.rows[0].cells[1]; + const igniterStatus = statusTable.rows[0].cells[1]; + const exhaustStatus = statusTable.rows[1].cells[1]; + const augerStatus = statusTable.rows[2].cells[1]; const feedRate = statusTable.rows[3].cells[1]; const feedRateSelect = document.getElementById('feed-rate-select');