Hoping and praying

This commit is contained in:
Skylar Grant 2024-08-14 20:29:22 -04:00
parent 6fab8e4101
commit 538775d726
2 changed files with 6 additions and 6 deletions

View File

@ -20,9 +20,9 @@ window.onload = async function() {
};
function refreshState(doc, state) {
const igniterStatus = doc.getElementById("igniterStatus");
const exhaustStatus = doc.getElementById("exhaustStatus");
const augerStatus = doc.getElementById("augerStatus");
const igniterStatus = doc.getElementById("igniter-status");
const exhaustStatus = doc.getElementById("exhaust-status");
const augerStatus = doc.getElementById("auger-status");
let statusString;
statusString = '';

View File

@ -29,15 +29,15 @@
<tbody>
<tr class="border-b border-gray-700">
<td class="py-2 px-4">Igniter</td>
<td class="py-2 px-4">Placeholder</td>
<td class="py-2 px-4" id="igniter-status">Placeholder</td>
</tr>
<tr class="border-b border-gray-700">
<td class="py-2 px-4">Exhaust</td>
<td class="py-2 px-4">Placeholder</td>
<td class="py-2 px-4" id="exhaust-status">Placeholder</td>
</tr>
<tr>
<td class="py-2 px-4">Auger</td>
<td class="py-2 px-4">Placeholder</td>
<td class="py-2 px-4" id="auger-status">Placeholder</td>
</tr>
</tbody>
</table>