Matthias Nott
2026-02-22 dc9df32a3796f1d012c5244f1877d4ed402622bd
static/js/app.js
....@@ -1,7 +1,8 @@
11 'use strict';
2
+const APP_VERSION = 'v4-20260222';
23
34 // ============================================================
4
-// OPS Dashboard — Vanilla JS Application (v3)
5
+// OPS Dashboard — Vanilla JS Application (v4)
56 // ============================================================
67
78 // ---------------------------------------------------------------------------
....@@ -107,6 +108,7 @@
107108 allServices = data;
108109 document.getElementById('login-overlay').style.display = 'none';
109110 document.getElementById('app').style.display = 'flex';
111
+ const vEl = document.getElementById('app-version'); if (vEl && typeof APP_VERSION !== 'undefined') vEl.textContent = APP_VERSION;
110112 showPage('dashboard');
111113 startAutoRefresh();
112114 })
....@@ -793,6 +795,7 @@
793795 allServices = data;
794796 document.getElementById('login-overlay').style.display = 'none';
795797 document.getElementById('app').style.display = 'flex';
798
+ const vEl = document.getElementById('app-version'); if (vEl && typeof APP_VERSION !== 'undefined') vEl.textContent = APP_VERSION;
796799 showPage('dashboard');
797800 startAutoRefresh();
798801 })