Skip to content

Commit

Permalink
Merge pull request #50 from hostinger/fix/file-size-human-readable
Browse files Browse the repository at this point in the history
fix: Print file size in human-readable form
  • Loading branch information
laurynasgadl authored Nov 12, 2024
2 parents 5ad1c50 + 5650801 commit 902fa52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/files/ListingItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const usedDiskSize = computed((): string => {
}
return (
diskUsage.value.size +
filesize(diskUsage.value.size) +
" " +
t("prompts.inodeCount", { count: diskUsage.value.inodes })
);
Expand Down

0 comments on commit 902fa52

Please sign in to comment.