File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
pkg/appStore/installedApp/repository Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -439,15 +439,15 @@ func (impl *InstalledAppRepositoryImpl) GetAllInstalledApps(filter *appStoreBean
439
439
}
440
440
if len (filter .ChartRepoId ) > 0 {
441
441
query = query + " AND ch.id IN (?) "
442
- queryParams = append (queryParams , sqlIntSeq (filter .ChartRepoId ))
442
+ queryParams = append (queryParams , pg . In (filter .ChartRepoId ))
443
443
}
444
444
if len (filter .EnvIds ) > 0 {
445
445
query = query + " AND env.id IN (?) "
446
- queryParams = append (queryParams , sqlIntSeq (filter .EnvIds ))
446
+ queryParams = append (queryParams , pg . In (filter .EnvIds ))
447
447
}
448
448
if len (filter .ClusterIds ) > 0 {
449
449
query = query + " AND cluster.id IN (?) "
450
- queryParams = append (queryParams , sqlIntSeq (filter .ClusterIds ))
450
+ queryParams = append (queryParams , pg . In (filter .ClusterIds ))
451
451
}
452
452
if len (filter .AppStatuses ) > 0 {
453
453
appStatuses := pg .In (filter .AppStatuses )
You can’t perform that action at this time.
0 commit comments