Skip to content

Commit 47bc80f

Browse files
committed
Merge branch 'main' into release/scoped-variables
2 parents 9cde739 + 10ff951 commit 47bc80f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/components/ClusterNodes/ClusterSelectionList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default function ClusterSelectionList({
145145
/>
146146
</div>
147147
<div>
148-
{errorCount > 0 ? (
148+
{clusterData.errorInNodeListing ? (
149149
<Tippy className="default-tt w-200" arrow={false} content={clusterData.errorInNodeListing}>
150150
<div className="flexbox">
151151
<Error className="mt-2 mb-2 mr-8 icon-dim-18" />

src/components/ClusterNodes/NodeDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ export default function NodeDetails({
642642
const _url = `${URLS.RESOURCE_BROWSER}/${clusterId}/${namespace}/pod/${_group}/${name}${
643643
tab ? `/${tab.toLowerCase()}` : ''
644644
}`
645-
const isAdded = addTab(_group, 'pod', name, _url)
645+
const isAdded = addTab(`${_group}_${namespace}`, 'pod', name, _url)
646646
if (isAdded) {
647647
updateNodeSelectionData(_nodeSelectionData, _group)
648648
push(_url)

src/components/app/details/appConfig/appConfig.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
&.config-protection__side-nav {
4141
grid-template-rows: 110px repeat(6, 32px) 54px 32px 1fr auto;
4242
&.hide-external-links {
43-
grid-template-rows: 110px repeat(6, 32px) 16px 32px 1fr auto;
43+
grid-template-rows: 110px repeat(6, 32px) 54px 1fr auto;
4444
}
4545
&.hide-app-config-help {
4646
grid-template-rows: repeat(6, 32px) 54px 32px 1fr auto;
4747

4848
&.hide-external-links {
49-
grid-template-rows: repeat(6, 32px) 16px 32px 1fr auto;
49+
grid-template-rows: repeat(6, 32px) 54px 1fr auto;
5050
}
5151
}
5252
}
@@ -205,4 +205,4 @@
205205
.repo-configured-icon {
206206
width: 96px;
207207
}
208-
}
208+
}

0 commit comments

Comments
 (0)