aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2025-06-26 10:55:46 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2025-07-03 17:44:40 +0200
commite1e47305f46b607b5c3c1da05dc7d14af327be65 (patch)
tree3dd7b89e61467ab09854baf034abdede5a49afca
parent247e3ee88701aa91d6c80e39e4e2dffcdc4c4c65 (diff)
downloadnextcloud-server-e1e47305f46b607b5c3c1da05dc7d14af327be65.tar.gz
nextcloud-server-e1e47305f46b607b5c3c1da05dc7d14af327be65.zip
fix: Correctly show free space if lower than quota in Files navigation
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r--apps/files/src/components/NavigationQuota.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/NavigationQuota.vue b/apps/files/src/components/NavigationQuota.vue
index f1d2738e81d..fd10af1c495 100644
--- a/apps/files/src/components/NavigationQuota.vue
+++ b/apps/files/src/components/NavigationQuota.vue
@@ -58,7 +58,7 @@ export default {
computed: {
storageStatsTitle() {
const usedQuotaByte = formatFileSize(this.storageStats?.used, false, false)
- const quotaByte = formatFileSize(this.storageStats?.quota, false, false)
+ const quotaByte = formatFileSize(this.storageStats?.total, false, false)
// If no quota set
if (this.storageStats?.quota < 0) {