Skip to content

Commit

Permalink
Fix issues in client list page
Browse files Browse the repository at this point in the history
Signed-off-by: Bipul Adhikari <[email protected]>
  • Loading branch information
bipuladh committed Nov 12, 2024
1 parent 415fe91 commit 9d60bef
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 9d60bef

Please sign in to comment.