Compare commits

...

1 Commits

Author SHA1 Message Date
Moisés Calzado 8a5c35cdbc Try to fix storage quota
1 year ago

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

Loading…
Cancel
Save