Skip to content

Commit 656c7a7

Browse files
committed
chore: text update
1 parent 1528f90 commit 656c7a7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

src/components/ClusterNodes/ClusterList/ClusterList.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +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 />}
4142
{Object.entries(ClusterMapListSortableKeys).map(([cellName, cellKey]) => (
4243
<React.Fragment key={cellName}>
4344
{KubeConfigRowCheckbox && cellKey === ClusterMapListSortableKeys.CLUSTER_NAME && (

src/components/ClusterNodes/ClusterList/ClusterListRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const ClusterListRow = ({
6767
>
6868
{KubeConfigRowCheckbox && <KubeConfigRowCheckbox clusterData={clusterData} />}
6969
{!isIdentifierSelected && identifierCount === 0 && (
70-
<div className="dc__visible-hover--hide-child flex left">
70+
<div className={`${KubeConfigRowCheckbox ? 'dc__visible-hover--hide-child' : ''} flex left`}>
7171
<Icon name="ic-bg-cluster" color={null} size={24} />
7272
</div>
7373
)}

src/components/app/details/appDetails/SourceInfo.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export const SourceInfo = ({
266266
showTooltip={isApprovalConfigured}
267267
tooltipProps={{
268268
content: 'Application deployment requiring approval cannot be hibernated.',
269-
placement: 'bottom-end',
269+
placement: 'bottom',
270270
}}
271271
/>
272272
)}
@@ -284,7 +284,7 @@ export const SourceInfo = ({
284284
showTooltip={isApprovalConfigured}
285285
tooltipProps={{
286286
content: 'Application deployment requiring approval cannot be hibernated.',
287-
placement: 'bottom-end',
287+
placement: 'bottom',
288288
}}
289289
/>
290290
)}
@@ -297,6 +297,11 @@ export const SourceInfo = ({
297297
component={ButtonComponentType.button}
298298
style={ButtonStyleType.neutral}
299299
ariaLabel="Go to Environment Configuration"
300+
showTooltip
301+
tooltipProps={{
302+
content: "Go to Environment Config",
303+
placement: 'bottom',
304+
}}
300305
/>
301306
{window._env_.FEATURE_SWAP_TRAFFIC_ENABLE &&
302307
SwapTraffic &&

0 commit comments

Comments
 (0)