Skip to content

Commit

Permalink
Merge pull request #9172 from openshift-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…9089-to-release-4.7

[release-4.7] Bug 1969105: Update IP address on pods list to show podIP other than …
  • Loading branch information
openshift-merge-robot committed Jun 11, 2021
2 parents 3e3a770 + 042c9d1 commit 32b98af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/public/components/pod.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ const getHeader = (showNodes) => {
{
title: i18next.t(podColumnInfo.ipaddress.title),
id: podColumnInfo.ipaddress.id,
sortField: 'status.hostIP',
sortField: 'status.podIP',
transforms: [sortable],
props: { className: podColumnInfo.ipaddress.classes },
additional: true,
Expand Down Expand Up @@ -412,7 +412,7 @@ const PodTableRow = connect<PodTableRowPropsFromState, null, PodTableRowProps>(p
columns={columns}
columnID={podColumnInfo.ipaddress.id}
>
{pod?.status?.hostIP ?? '-'}
{pod?.status?.podIP ?? '-'}
</TableData>
<TableData className={Kebab.columnClass}>
<ResourceKebab
Expand Down

0 comments on commit 32b98af

Please sign in to comment.