feat: allow to use 0 as auto refresh interval with special meaning (#148)

This commit is contained in:
2025-07-01 03:37:49 +03:00
parent 256376df85
commit 390b9da29e
4 changed files with 7 additions and 3 deletions

View File

@ -29,7 +29,8 @@ allow_read_only = yes
; address = http://${web:host}:${web:port}
;address = http://${web:host}:${web:port}
; Enable page auto refresh. Intervals are given in seconds. Default interval is always the first element of the list.
; If no intervals set, auto refresh will be disabled.
; If no intervals set, auto refresh will be disabled. 0 can only be the first element and will disable auto refresh
; by default.
autorefresh_intervals = 5 1 10 30 60
; Enable file upload endpoint used by some triggers.
;enable_archive_upload = no

View File

@ -154,6 +154,8 @@
// finally create timer task
return setInterval(callback, interval);
}
} else {
toggle.checked = false; // no active interval found, disable toggle
}
return null; // return null to assign to keep method sane