Skip to content

Commit 5e94f01

Browse files
authored
Merge branch 'main' into tagging-implementation
2 parents 930141c + 0d290e5 commit 5e94f01

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.github/semantic.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
titleOnly: true
2+
3+
types:
4+
- fix
5+
- feat
6+
- feature
7+
- fixes
8+
- chore
9+
- perf
10+
- docs
11+
- doc
12+
- release
13+
- misc

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ const GenericAppList = ({
141141
}, [appsList])
142142

143143
const handleArgoAppListing = () => {
144+
if (!clusterIdsCsv) return
144145
setDataStateType(AppListViewType.LOADING)
145146
getArgoInstalledExternalApps(clusterIdsCsv)
146147
.then((appsListResponse) => {
@@ -173,11 +174,7 @@ const GenericAppList = ({
173174

174175
// reset data
175176
function init() {
176-
if (isSSE && !payloadParsedFromUrl?.namespaces?.length) {
177-
setDataStateType(AppListViewType.LIST)
178-
} else {
179-
setDataStateType(AppListViewType.LOADING)
180-
}
177+
setDataStateType(AppListViewType.LIST)
181178
setClusterIdsCsv(_getClusterIdsFromRequestUrl() ?? null)
182179
setAppsList([])
183180
setFilteredAppsList([])

0 commit comments

Comments
 (0)