From 856440384fad0d1cd2d3749ca97f03203997a620 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Tue, 28 Apr 2026 18:42:31 +0200 Subject: [PATCH] fix design --- web/html/index.html | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/web/html/index.html b/web/html/index.html index 3cd21677..62e9453b 100644 --- a/web/html/index.html +++ b/web/html/index.html @@ -169,6 +169,14 @@ + v{{ .cur_ver }} @@ -184,12 +192,6 @@ {{ i18n "pages.index.documentation" }} - @@ -1430,6 +1432,13 @@ // Initial status fetch await this.getStatus(); + // Silently check for panel updates so the indicator shows on load + HttpUtil.get('/panel/api/server/getPanelUpdateInfo').then(msg => { + if (msg && msg.success && msg.obj) { + panelUpdateModal.info = msg.obj; + } + }); + // Setup WebSocket for real-time updates if (window.wsClient) { window.wsClient.connect();