From e3ed9247a6ffc3d66eddeaa641cd3a2e2c310aef Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 13:56:03 +0000 Subject: [PATCH] Remove redundant status line from Function column Merged commit 448b2b3 from SteveGilvarry/ZoneMinder. The Function column was showing "Status: Connected" which was redundant with the colored dot indicator in the Name column. Removed the status line while keeping "Offline" text for monitors that haven't reported in 90+ seconds. This reduces visual clutter and makes the Function column focus on actual function-related information. Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com> --- web/skins/classic/views/js/console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/js/console.js b/web/skins/classic/views/js/console.js index c29d74133..3a524941b 100644 --- a/web/skins/classic/views/js/console.js +++ b/web/skins/classic/views/js/console.js @@ -158,7 +158,7 @@ function processRows(rows) { if (!row.UpdatedOn || (new Date(row.UpdatedOn).getTime() < Date.now() - fps_report_seconds * 1000)) { functionHtml = 'Offline
'; } else { - functionHtml = 'Status: ' + row.Status + '
'; + functionHtml = ''; if (row.Analysing && row.Analysing != 'None') { functionHtml += 'Analysing: ' + row.Analysing + '
'; }