diff --git a/script.js b/script.js
index 5160fd3..5b0d297 100644
--- a/script.js
+++ b/script.js
@@ -8,8 +8,8 @@ fetch ("block.txt")
.then(y => document.getElementById("blocked").innerHTML = y);
async function refresh(){
// Refresh the HTML to show the spinners
- document.getElementById("run").innerHTML = ""
- document.getElementById("blocked").innerHTML = ""
+ document.getElementById("run").innerHTML = "..."
+ document.getElementById("blocked").innerHTML = "..."
// Then fetch the values the same way as on the first part of the script.
fetch ("run.txt")
.then(x => x.text())