Skip to content

Commit 8396c30

Browse files
authored
Have TenantItem charts use capacity instead of raw capacity (#2083)
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
1 parent 161d56d commit 8396c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portal-ui/src/screens/Console/Tenants/ListTenants/TenantListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ const TenantListItem = ({ tenant, classes }: ITenantListItem) => {
210210
<Grid container>
211211
<Grid item xs={2}>
212212
<TenantCapacity
213-
totalCapacity={tenant.capacity_raw || 0}
213+
totalCapacity={tenant.capacity || 0}
214214
usedSpaceVariants={spaceVariants}
215215
statusClass={healthStatusToClass(tenant.health_status)}
216216
/>

0 commit comments

Comments
 (0)