Skip to content

Commit 89be81f

Browse files
authored
RI-7449: show cluster node host (#5079)
1 parent 0f1bcc8 commit 89be81f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redisinsight/ui/src/pages/cluster-details/components/cluser-nodes-table/ClusterNodesTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const ClusterNodesTable = ({
4949
enableSorting: true,
5050
cell: ({
5151
row: {
52-
original: { letter, port, color },
52+
original: { letter, port, color, host },
5353
},
5454
}) => (
5555
<>
@@ -63,7 +63,7 @@ const ClusterNodesTable = ({
6363
{letter}
6464
</span>
6565
<span>
66-
{letter}:{port}
66+
{host}:{port}
6767
</span>
6868
</div>
6969
</>

0 commit comments

Comments
 (0)