@samitouri / QOSami-HFS / commits / b3644c3b

fix: (regression beta) admin/monitoring: uptime empty in the first minute

Massimo Melina committed Feb 13, 2024 at 09:44 UTC b3644c3b7016fa6b4c08511e9fc389fb5696a57f
1 file changed +1 -1
shared/index.ts
+1 -1
@@ -114,7 +114,7 @@ export function createDurationFormatter({ locale=undefined, unitDisplay='narrow'
114 const a = []
115 let on = false
116 for (const [unit, mul] of typedEntries(multipliers)) {
117 - if (unit === smallest)
117 + if (unit === smallest && a.length)
118 break
119 if (unit === largest)
120 on = true