mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-05-16 18:44:45 -04:00
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:
@@ -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/>';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user