Skip to content

Commit a67c80c

Browse files
authored
Merge pull request #1335 from devtron-labs/fix-for-UI
fix: revert fixes
2 parents 3500b29 + cda89a2 commit a67c80c

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
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/app/details/appConfig/appConfig.scss

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,17 @@
3939

4040
&.config-protection__side-nav {
4141
grid-template-rows: 110px repeat(6, 32px) 54px 32px 1fr auto;
42-
&.hide-external-links {
43-
grid-template-rows: 110px repeat(6, 32px) 16px 32px 1fr auto;
44-
}
45-
&.hide-app-config-help {
46-
grid-template-rows: repeat(6, 32px) 54px 32px 1fr auto;
47-
42+
4843
&.hide-external-links {
49-
grid-template-rows: repeat(6, 32px) 16px 32px 1fr auto;
44+
grid-template-rows: 110px repeat(6, 32px) 54px 1fr auto;
5045
}
46+
47+
&.hide-app-config-help {
48+
grid-template-rows: repeat(6, 32px) 54px 32px 1fr auto;
49+
50+
&.hide-external-links {
51+
grid-template-rows: repeat(6, 32px) 54px 1fr auto;
52+
}
5153
}
5254
}
5355

src/components/app/list-new/HelmAppList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ export default function HelmAppList({
403403
<span className="app-list__cell-header flex cursor" onClick={sortByLastDeployed}>
404404
{APP_LIST_HEADERS.LastDeployedAt}
405405
{sortBy == SortBy.LAST_DEPLOYED ? (
406-
<span className={`sort ${sortOrder == OrderBy.DESC ? 'sort-up' : ''} ml-4`}></span>
406+
<span className={`sort ${sortOrder == OrderBy.ASC ? 'sort-up' : ''} ml-4`}></span>
407407
) : (
408408
<span className="sort-col dc__opacity-0_5 ml-4"></span>
409409
)}

0 commit comments

Comments
 (0)