Skip to content

Commit

Permalink
Small fix with calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
derneuere committed Oct 7, 2023
1 parent 9bfee51 commit 0375e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/menubars/SideMenuNarrow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function SideMenuNarrow(): JSX.Element {
>
<Progress
style={{ margin: 10 }}
sections={[{ value: storageStats.used_storage / storageStats.total_storage, color: "grey" }]}
sections={[{ value: (storageStats.used_storage / storageStats.total_storage) * 100, color: "grey" }]}
/>
</Tooltip>
)}
Expand Down

0 comments on commit 0375e13

Please sign in to comment.