diff --git a/apps/view/src/widgets/cpu.tsx b/apps/view/src/widgets/cpu.tsx index cf91b8ce5..011d53c03 100644 --- a/apps/view/src/widgets/cpu.tsx +++ b/apps/view/src/widgets/cpu.tsx @@ -163,7 +163,7 @@ export const CpuChart: FC = ({ ( - {(x.payload?.[0]?.value as number)?.toFixed(2)} % + {(x.payload?.[0]?.value as number)?.toFixed(1)} % )} /> diff --git a/apps/view/src/widgets/ram.tsx b/apps/view/src/widgets/ram.tsx index 468d79aef..4e0d0e904 100644 --- a/apps/view/src/widgets/ram.tsx +++ b/apps/view/src/widgets/ram.tsx @@ -57,7 +57,7 @@ export const RamChart: FC = ({ ( - {(x.payload?.[0]?.value as number)?.toFixed(2)} % + {(x.payload?.[0]?.value as number)?.toFixed(1)} % )} />