fix colors

This commit is contained in:
nate 2026-04-09 20:26:16 +04:00
parent 3e8c13b712
commit 7bc3f920f3
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@
} }
function uptimeBand(p) { function uptimeBand(p) {
if (p == null) return 'empty'; if (p == null) return 'empty';
if (p >= 99.9) return 'good'; if (p >= 97) return 'good';
if (p >= 99.0) return 'warn'; if (p >= 87) return 'warn';
return 'bad'; return 'bad';
} }
function fmtUptime(p) { function fmtUptime(p) {