Merge pull request #50 from hostinger/fix/file-size-human-readable

fix: Print file size in human-readable form
pull/3756/head
Laurynas Gadliauskas 2024-11-12 10:37:02 +02:00 committed by GitHub
commit 902fa5245f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ const usedDiskSize = computed((): string => {
}
return (
diskUsage.value.size +
filesize(diskUsage.value.size) +
" " +
t("prompts.inodeCount", { count: diskUsage.value.inodes })
);