Skip to content

Commit

Permalink
Merge pull request #346 from Phillezi/disksize-typo
Browse files Browse the repository at this point in the history
Fix small typo on disksize user usage inside admin panel
  • Loading branch information
Phillezi authored Feb 4, 2025
2 parents 8e12821 + 9aad30a commit bafe48a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/admin/AdminV2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export default function AdminV2() {

<Typography variant="body2">Disk</Typography>
<Tooltip
title={`${user.usage.cpuCores} of ${user.quota.cpuCores} GB (${disk}%)`}
title={`${user.usage.diskSize} of ${user.quota.diskSize} GB (${disk}%)`}
>
<LinearProgress variant="determinate" value={Number(disk)} />
</Tooltip>
Expand Down

0 comments on commit bafe48a

Please sign in to comment.