Skip to content

Commit

Permalink
🐛 Fix Mi volume size parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePooN committed Jan 19, 2023
1 parent 97444c0 commit 9925275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function parseSize(kubernetesSize) {
break;
case 'Gi':
size *= 1024;
case 'M':
case 'Mi':
size *= 1024 * 1024;
break;
}
Expand Down

0 comments on commit 9925275

Please sign in to comment.