swarm-ui: add 5s refresh interval option

mara: add a 5s option to the refresh cadence picker.
This commit is contained in:
iris 2026-08-24 18:34:17 +02:00 committed by mara
commit 2e43205fc3

View file

@ -34,6 +34,7 @@ export type RefreshIntervalMs = number | null;
const PRESETS: { value: RefreshIntervalMs; label: string }[] = [
{ value: null, label: 'off' },
{ value: 5_000, label: '5s' },
{ value: 10_000, label: '10s' },
{ value: 30_000, label: '30s' },
{ value: 60_000, label: '1m' },