mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 13:09:31 +01:00
Fix calculate memory when no cache value
This commit is contained in:
parent
e549a87719
commit
dde188c3c4
@ -11,5 +11,5 @@ export function calculateCPUPercent(stats) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function calculateUsedMemory(stats) {
|
export function calculateUsedMemory(stats) {
|
||||||
return stats.memory_stats.usage - stats.memory_stats.stats.cache
|
return stats.memory_stats.usage - (stats.memory_stats.stats.cache ?? 0)
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user