Fixed table addresses

This commit is contained in:
Skylar Grant 2023-11-17 10:57:37 -05:00
parent 2823f9d96d
commit 60657b2da6
1 changed files with 3 additions and 3 deletions

View File

@ -131,9 +131,9 @@
// Get the elements we need to update // Get the elements we need to update
const statusTable = document.getElementById('status-table'); const statusTable = document.getElementById('status-table');
const igniterStatus = statusTable.rows[1].cells[1]; const igniterStatus = statusTable.rows[0].cells[1];
const exhaustStatus = statusTable.rows[2].cells[1]; const exhaustStatus = statusTable.rows[1].cells[1];
const augerStatus = statusTable.rows[0].cells[1]; const augerStatus = statusTable.rows[2].cells[1];
const feedRate = statusTable.rows[3].cells[1]; const feedRate = statusTable.rows[3].cells[1];
const feedRateSelect = document.getElementById('feed-rate-select'); const feedRateSelect = document.getElementById('feed-rate-select');