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>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-07 13:56:03 +00:00
parent f6598a023f
commit e3ed9247a6

View File

@@ -158,7 +158,7 @@ function processRows(rows) {
if (!row.UpdatedOn || (new Date(row.UpdatedOn).getTime() < Date.now() - fps_report_seconds * 1000)) {
functionHtml = 'Offline<br/>';
} else {
functionHtml = 'Status: ' + row.Status + '<br/>';
functionHtml = '';
if (row.Analysing && row.Analysing != 'None') {
functionHtml += 'Analysing: ' + row.Analysing + '<br/>';
}