Fix a bug with time zone reporting in alerts.

This commit is contained in:
Ian Renton
2025-10-23 09:37:22 +01:00
parent 5d4b3d500d
commit f2f03b135f
2 changed files with 13 additions and 14 deletions

View File

@@ -88,7 +88,7 @@ function updateTable() {
// Format a UTC or local time for display
var time = moment.unix(s["time"]).utc();
if (useLocalTime) {
time = time.local();
time.local();
}
var time_formatted = time.format("HH:mm");