Skip to content

Commit e627c9a

Browse files
[autofix.ci] apply automated fixes
1 parent ef9732d commit e627c9a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/dokploy/components/dashboard/monitoring/free/container/show-free-container-monitoring.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { DockerNetworkChart } from "./docker-network-chart";
1010

1111
const defaultData = {
1212
cpu: {
13-
value: '0%',
13+
value: "0%",
1414
time: "",
1515
},
1616
memory: {
@@ -220,7 +220,10 @@ export const ContainerFreeMonitoring = ({
220220
<span className="text-sm text-muted-foreground">
221221
Used: {currentData.cpu.value}
222222
</span>
223-
<Progress value={parseInt(currentData.cpu.value.replace('%', ''), 10)} className="w-[100%]" />
223+
<Progress
224+
value={parseInt(currentData.cpu.value.replace("%", ""), 10)}
225+
className="w-[100%]"
226+
/>
224227
<DockerCpuChart acummulativeData={acummulativeData.cpu} />
225228
</div>
226229
</CardContent>

0 commit comments

Comments
 (0)