summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/status.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/status.js b/frontend/status.js
index b822e58..446c655 100644
--- a/frontend/status.js
+++ b/frontend/status.js
@@ -3,5 +3,6 @@ startUpdateMachines();
(async () => {
const urlParams = new URLSearchParams(window.location.search);
const blk = await information(urlParams.get("machine"))["block"];
+ console.log("blk", blk);
document.getElementById("status-title").innerHTML = `Machine Status for H${blk ? blk : '?'}`
})();