From 8a5c35cdbcff636cff4fa979eb186083639a185f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Calzado?= Date: Thu, 6 Jul 2023 14:11:32 +0200 Subject: [PATCH] Try to fix storage quota --- .../new-dashboard/pages/Home/QuotaSection/MemoryQuota.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/assets/javascripts/new-dashboard/pages/Home/QuotaSection/MemoryQuota.vue b/lib/assets/javascripts/new-dashboard/pages/Home/QuotaSection/MemoryQuota.vue index 8651176419..c16835e783 100644 --- a/lib/assets/javascripts/new-dashboard/pages/Home/QuotaSection/MemoryQuota.vue +++ b/lib/assets/javascripts/new-dashboard/pages/Home/QuotaSection/MemoryQuota.vue @@ -54,11 +54,11 @@ export default { return [{ color: DATASETS_COLOR, label: 'Datasets', - value: getAmountInUnit(this.datasetsSize, this.storageExponent) + value: getAmountInUnit(this.datasetsSize) }, ...(this.subscriptionsPublicSizeInBytes ? [{ color: DATA_SUBSCRIPTIONS_COLOR, label: 'Public data subscriptions', - value: getAmountInUnit(this.subscriptionsPublicSizeInBytes, this.storageExponent) + value: getAmountInUnit(this.subscriptionsPublicSizeInBytes) }] : [])]; }, usedPremiumDataSubscriptions () {