mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 06:08:48 +00:00
Fix: glances metric - different key for process list memory on windows host (#4410)
This commit is contained in:
parent
22c02f4e45
commit
5bc67137f6
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export default function Component({ service }) {
|
|||
<div className="opacity-25 w-14 text-right">{item.cpu_percent.toFixed(1)}%</div>
|
||||
<div className="opacity-25 w-14 text-right">
|
||||
{t("common.bytes", {
|
||||
value: item.memory_info[memoryInfoKey],
|
||||
value: item.memory_info[memoryInfoKey] ?? item.memory_info.wset,
|
||||
maximumFractionDigits: 0,
|
||||
})}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue