diff --git a/succbone/succd/index.html b/succbone/succd/index.html
index 8175625..abd5695 100644
--- a/succbone/succd/index.html
+++ b/succbone/succd/index.html
@@ -410,6 +410,15 @@ window.addEventListener("load", (_) => {
socket.addEventListener("close", (event) => {
status.innerHTML = "Offline";
status.style = colors.highlightFault;
+
+ // Indicate all process values as unknown
+
+ [failsafe, highpressure, rp, dp, trough, thigh, volts, mbar].forEach((el) => {
+ if (!el.innerHTML.includes("??")) {
+ el.innerHTML += "??";
+ }
+ });
+
if (connected) {
console.log("Socket dead, reconnecting...");
}