swarm-ui: add 5s refresh interval option
mara: add a 5s option to the refresh cadence picker.
This commit is contained in:
parent
6a01850096
commit
2e43205fc3
1 changed files with 1 additions and 0 deletions
|
|
@ -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' },
|
||||
|
|
|
|||
Loading…
Reference in a new issue