fix(monitoring): remove extra percent from cpu usage

This commit is contained in:
Nicholas Penree 2025-03-12 09:06:25 -04:00
parent 3b737ca55b
commit 8c05214e78

View File

@ -218,7 +218,7 @@ export const ContainerFreeMonitoring = ({
<CardContent>
<div className="flex flex-col gap-2 w-full">
<span className="text-sm text-muted-foreground">
Used: {currentData.cpu.value}%
Used: {currentData.cpu.value}
</span>
<Progress value={currentData.cpu.value} className="w-[100%]" />
<DockerCpuChart acummulativeData={acummulativeData.cpu} />