mirror of
https://github.com/gethomepage/homepage.git
synced 2025-07-31 14:33:48 -04:00
Fix: fix cpu percent for Proxmox stats (#5528)
This commit is contained in:
parent
d0165326a6
commit
0d6ecae51b
@ -25,7 +25,7 @@ export default function ProxmoxVM({ service }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
<Block label="resources.cpu" value={t("common.percent", { value: data.cpu })} />
|
<Block label="resources.cpu" value={t("common.percent", { value: data.cpu * 100 })} />
|
||||||
<Block label="resources.mem" value={t("common.bytes", { value: data.mem })} />
|
<Block label="resources.mem" value={t("common.bytes", { value: data.mem })} />
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user