mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
fix: stg percent error
This commit is contained in:
parent
652e9ec137
commit
f28b970787
@ -27,7 +27,7 @@ export default function ServerListClient() {
|
||||
status={DateTime.now().toUnixInteger() - server.last_active > 300 ? "offline" : "online"}
|
||||
uptime={server.status.Uptime / 86400}
|
||||
mem={(server.status.MemUsed / server.host.MemTotal) * 100}
|
||||
stg={server.status.DiskUsed / server.host.DiskTotal}
|
||||
stg={(server.status.DiskUsed / server.host.DiskTotal) * 100}
|
||||
/>
|
||||
),
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user