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 () {