We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656c7a7 commit 6a6df6aCopy full SHA for 6a6df6a
src/components/ClusterNodes/ClusterList/ClusterList.tsx
@@ -38,7 +38,7 @@ const ClusterList = ({
38
return (
39
<div data-testid="cluster-list-container" className="flexbox-col flex-grow-1">
40
<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 />}
+ {KubeConfigRowCheckbox === null ? <div /> : null}
42
{Object.entries(ClusterMapListSortableKeys).map(([cellName, cellKey]) => (
43
<React.Fragment key={cellName}>
44
{KubeConfigRowCheckbox && cellKey === ClusterMapListSortableKeys.CLUSTER_NAME && (
0 commit comments