Fix: fix cpu percent for Proxmox stats (#5528)

This commit is contained in:
Chris 2025-07-20 19:42:53 -04:00 committed by GitHub
parent d0165326a6
commit 0d6ecae51b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ export default function ProxmoxVM({ service }) {
return (
<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 })} />
</Container>
);