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 044b80e commit d75bd92Copy full SHA for d75bd92
src/containers/Tenant/Diagnostics/TenantOverview/MetricsTabs/MetricsTabs.tsx
@@ -127,7 +127,11 @@ export function MetricsTabs({
127
>
128
<Link to={tabLinks.storage} className={b('link')}>
129
<TabCard
130
- text={i18n('cards.storage-label')}
+ text={
131
+ storageGroupsCount === undefined
132
+ ? i18n('cards.storage-label')
133
+ : i18n('context_storage-groups', {count: storageGroupsCount})
134
+ }
135
value={storageMetrics.totalUsed}
136
limit={storageMetrics.totalLimit}
137
legendFormatter={formatStorageLegend}
0 commit comments