diff --git a/frontend-modern/src/components/shared/NodeSummaryTable.tsx b/frontend-modern/src/components/shared/NodeSummaryTable.tsx index 3dfbb4c66..2b48f3b9c 100644 --- a/frontend-modern/src/components/shared/NodeSummaryTable.tsx +++ b/frontend-modern/src/components/shared/NodeSummaryTable.tsx @@ -120,7 +120,7 @@ export const NodeSummaryTable: Component = (props) => { : (pbs!.status === 'healthy' || pbs!.status === 'online'); const cpuPercent = () => isPVE - ? Math.round(node!.cpu || 0) + ? Math.round((node!.cpu || 0) * 100) : Math.round(pbs!.cpu || 0); const memPercent = () => isPVE