We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 313d130 commit 5aa5b68Copy full SHA for 5aa5b68
src/store/reducers/tenants/utils.ts
@@ -82,8 +82,8 @@ export const calculateTenantMetrics = (tenant: TTenant = {}) => {
82
const blobStorageLimit = isNumeric(StorageAllocatedLimit)
83
? Number(StorageAllocatedLimit)
84
: undefined;
85
- const tabletStorageLimit = isNumeric(DatabaseQuotas.data_size_hard_quota)
86
- ? Number(DatabaseQuotas.data_size_hard_quota)
+ const tabletStorageLimit = isNumeric(DatabaseQuotas.data_size_soft_quota)
+ ? Number(DatabaseQuotas.data_size_soft_quota)
87
88
89
const poolsStats = calculatePoolsStats(PoolStats);
0 commit comments