diff --git a/packages/shared/store/CurrentQuotaStore.ts b/packages/shared/store/CurrentQuotaStore.ts index 96ef04f520..5c0153ff86 100644 --- a/packages/shared/store/CurrentQuotaStore.ts +++ b/packages/shared/store/CurrentQuotaStore.ts @@ -221,7 +221,8 @@ class CurrentQuotasStore { get showTenantCustomQuotaBar() { if (!this.isTenantCustomQuotaSet || this.tenantCustomQuota === undefined) return false; - if (!this.tenantCustomQuota) return false; + + if (+this.tenantCustomQuota === -1) return false; return ( (this.usedTotalStorageSizeCount / this.tenantCustomQuota) * 100 >=