fix: Display inodes as generic count (#55)
parent
8ad3aaf4f1
commit
f97fb7c2bf
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue