fix: Display inodes as generic count (#55)

pull/3756/head
Laurynas Gadliauskas 2025-01-24 09:55:33 +02:00 committed by GitHub
parent 8ad3aaf4f1
commit f97fb7c2bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ const spaceUsageTitle = computed(() =>
const inodeUsageTitle = computed(() =>
!quotaStore.quota
? "- / -"
: filesize(quotaStore.quota.inodes.usage) +
: quotaStore.quota.inodes.usage +
" / " +
filesize(quotaStore.quota.inodes.quota)
quotaStore.quota.inodes.quota
);
const progress = (info: QuotaInfo) => {