fix: removed duplicate percentage label

This commit is contained in:
Tobias Wymer
2025-03-14 19:34:15 +01:00
parent 3b737ca55b
commit e61c216ea0

View File

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