From 270b303be0b93535a646366e70302db4a85ff388 Mon Sep 17 00:00:00 2001 From: oOHiyoriOo Date: Sat, 13 Jun 2026 18:44:26 +0200 Subject: [PATCH] refactor: remove redundant hostname heading from server tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The server name is already shown in the navbar — no need to repeat it as a heading on the page. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- js/pages/serverInfo.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/pages/serverInfo.js b/js/pages/serverInfo.js index 592ec48..9d9ffd4 100644 --- a/js/pages/serverInfo.js +++ b/js/pages/serverInfo.js @@ -8,7 +8,6 @@ function ServerInfoPage(params, container) { var html = '
' + '
' + - '

Server Info

' + '
Loading…
' + '
' + '
' + @@ -130,10 +129,6 @@ function ServerInfoPage(params, container) { } } fieldsEl.innerHTML = fieldsHtml; - if (data.Hostname) { - var hn = document.getElementById('si-hostname'); - if (hn) hn.textContent = data.Hostname; - } // Collect chart data recordedData.push({ ts: Date.now(), data: data });