Skip to content

Commit

Permalink
Merge pull request #27 from natron-io/fix_values
Browse files Browse the repository at this point in the history
fix donut
  • Loading branch information
janlauber authored Feb 8, 2022
2 parents f40fd17 + ec5b7aa commit f92ca38
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ export default function StorageCardComponent() {
primaryValue={
storageObject[selectedStorage] / 1024 / 1024 / 1024
}
secondaryValue={storageQuotaObject[selectedStorage]}
secondaryValue={storageQuotaObject[selectedStorage] / 1024 / 1024 / 1024}
innerText={
100 -
(100 / storageQuotaObject[selectedStorage]) *
(100 / storageQuotaObject[selectedStorage] / 1024 / 1024 / 1024) *
(storageObject[selectedStorage] / 1024 / 1024 / 1024) +
"% Frei"
}
Expand Down

0 comments on commit f92ca38

Please sign in to comment.