Skip to content

Commit fef4972

Browse files
committed
revert fixes
1 parent 3500b29 commit fef4972

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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: 2 additions & 2 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
}

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)