From df5eb1af01e0677de24956e027500256ea136a31 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Mon, 10 Aug 2026 23:00:33 +0200 Subject: [PATCH] fix(admin): add matching syntax help to the Discovery Interval field The update-check interval field just got an info-toggle explaining Go duration syntax; Discovery Interval takes the exact same syntax and had no such help, which would read as inconsistent on the same Settings page. Pre-existing gap, unrelated to #591 itself, but small enough to fix alongside it while the pattern is fresh. --- pkg/service/handlers/web/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/service/handlers/web/index.html b/pkg/service/handlers/web/index.html index 7b071b8..51e3da0 100644 --- a/pkg/service/handlers/web/index.html +++ b/pkg/service/handlers/web/index.html @@ -308,6 +308,12 @@
+ +
+ Go duration syntax: a number followed by a unit, optionally combined + (e.g. 5m, 90s, 1h30m).
+ Units: h (hours), m (minutes), s (seconds). +