Skip to content

Commit b1d6664

Browse files
committed
#RI-3492 - fix some ui issues
1 parent d919851 commit b1d6664

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ const ClusterNodesTable = ({ nodes, loading }: { nodes: Nullable<ModifiedCluster
5050
dataType: 'string',
5151
sortable: ({ index }) => index,
5252
render: (value: number, { letter, port }) => (
53-
<>
53+
<div className={styles.hostPort}>
5454
<span className={styles.nodeName} data-testid="node-letter">{letter}</span>
5555
<span>{value}:{port}</span>
56-
</>
56+
</div>
5757
)
5858
},
5959
{

redisinsight/ui/src/pages/clusterDetails/components/cluser-nodes-table/styles.module.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ $breakpoint-table: 1232px;
127127
}
128128
}
129129

130-
.euiTableHeaderButton:hover .euiTableCellContent__text,
131130
.euiTableHeaderButton:focus .euiTableCellContent__text {
132131
text-decoration: none;
133132
}
@@ -168,4 +167,9 @@ $breakpoint-table: 1232px;
168167
margin-bottom: 4px;
169168
}
170169
}
170+
171+
.hostPort {
172+
display: inline-flex;
173+
font: normal normal normal 13px/18px Graphik, sans-serif !important;
174+
}
171175
}

0 commit comments

Comments
 (0)