File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ const ClusterList = ({
38
38
return (
39
39
< div data-testid = "cluster-list-container" className = "flexbox-col flex-grow-1" >
40
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 /> }
41
42
{ Object . entries ( ClusterMapListSortableKeys ) . map ( ( [ cellName , cellKey ] ) => (
42
43
< React . Fragment key = { cellName } >
43
44
{ KubeConfigRowCheckbox && cellKey === ClusterMapListSortableKeys . CLUSTER_NAME && (
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ const ClusterListRow = ({
67
67
>
68
68
{ KubeConfigRowCheckbox && < KubeConfigRowCheckbox clusterData = { clusterData } /> }
69
69
{ ! isIdentifierSelected && identifierCount === 0 && (
70
- < div className = " dc__visible-hover--hide-child flex left" >
70
+ < div className = { ` ${ KubeConfigRowCheckbox ? ' dc__visible-hover--hide-child' : '' } flex left` } >
71
71
< Icon name = "ic-bg-cluster" color = { null } size = { 24 } />
72
72
</ div >
73
73
) }
Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ export const SourceInfo = ({
266
266
showTooltip = { isApprovalConfigured }
267
267
tooltipProps = { {
268
268
content : 'Application deployment requiring approval cannot be hibernated.' ,
269
- placement : 'bottom-end ' ,
269
+ placement : 'bottom' ,
270
270
} }
271
271
/>
272
272
) }
@@ -284,7 +284,7 @@ export const SourceInfo = ({
284
284
showTooltip = { isApprovalConfigured }
285
285
tooltipProps = { {
286
286
content : 'Application deployment requiring approval cannot be hibernated.' ,
287
- placement : 'bottom-end ' ,
287
+ placement : 'bottom' ,
288
288
} }
289
289
/>
290
290
) }
@@ -297,6 +297,11 @@ export const SourceInfo = ({
297
297
component = { ButtonComponentType . button }
298
298
style = { ButtonStyleType . neutral }
299
299
ariaLabel = "Go to Environment Configuration"
300
+ showTooltip
301
+ tooltipProps = { {
302
+ content : "Go to Environment Config" ,
303
+ placement : 'bottom' ,
304
+ } }
300
305
/>
301
306
{ window . _env_ . FEATURE_SWAP_TRAFFIC_ENABLE &&
302
307
SwapTraffic &&
You can’t perform that action at this time.
0 commit comments