Skip to content

Commit 6a6df6a

Browse files
committed
chore: fix
1 parent 656c7a7 commit 6a6df6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ClusterNodes/ClusterList/ClusterList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const ClusterList = ({
3838
return (
3939
<div data-testid="cluster-list-container" className="flexbox-col flex-grow-1">
4040
<div className="cluster-list-row fw-6 cn-7 fs-12 dc__border-bottom pt-8 pb-8 pr-20 pl-20 dc__uppercase bg__primary dc__position-sticky dc__top-0 dc__zi-3">
41-
{KubeConfigRowCheckbox === null && <div />}
41+
{KubeConfigRowCheckbox === null ? <div /> : null}
4242
{Object.entries(ClusterMapListSortableKeys).map(([cellName, cellKey]) => (
4343
<React.Fragment key={cellName}>
4444
{KubeConfigRowCheckbox && cellKey === ClusterMapListSortableKeys.CLUSTER_NAME && (

0 commit comments

Comments
 (0)