Skip to content

Commit

Permalink
Merge pull request #1671 from bipuladh/c-a2
Browse files Browse the repository at this point in the history
Fix issues in client list page
  • Loading branch information
openshift-merge-bot[bot] authored Nov 12, 2024
2 parents d61b5ce + 9d60bef commit fb08194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/odf/components/storage-consumers/client-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const ClientsList: React.FC<ClientListProps> = (props) => {
column.sort = 'status.storageQuotaInGiB';
column.props.info = { popover: <StorageQuotaPopoverContent /> };
break;
case 'storageQuotaUtilRation':
case 'storageQuotaUtilRatio':
column.title = t('Storage quota utilization ratio');
column.sort = 'status.client.storageQuotaUtilization';
column.props.info = { popover: <StorageQuotaPopoverContent /> };
Expand Down Expand Up @@ -352,7 +352,7 @@ const StorageClientRow: React.FC<
case 'storageQuota':
data = humanizedStorageQuota;
break;
case 'storageQuotaUtilizationRatio':
case 'storageQuotaUtilRatio':
data = getStorageQuotaUtilizationRatio(obj) || '-';
break;
case 'openshiftVersion':
Expand Down

0 comments on commit fb08194

Please sign in to comment.