diff --git a/frontend/src/components/Quota.vue b/frontend/src/components/Quota.vue index bb096370..6b2b5e4b 100644 --- a/frontend/src/components/Quota.vue +++ b/frontend/src/components/Quota.vue @@ -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) => {