Skip to content

Commit

Permalink
Fixes: argoproj#9364
Browse files Browse the repository at this point in the history
In the argoproj#8929, the project parameter had changed to projects.

https://github.com/argoproj/argo-cd/blob/5f5d7aa59b4c818192b178f260eed8c0ac0b3669/server/application/application.proto#L23
Signed-off-by: neosu <neo@neobaran.com>
  • Loading branch information
szpnygo committed May 11, 2022
1 parent 5f5d7aa commit e24831f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/shared/services/applications-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class ApplicationsService {
public list(projects: string[], options?: QueryOptions): Promise<models.ApplicationList> {
return requests
.get('/applications')
.query({project: projects, ...optionsToSearch(options)})
.query({projects: projects, ...optionsToSearch(options)})
.then(res => res.body as models.ApplicationList)
.then(list => {
list.items = (list.items || []).map(app => this.parseAppFields(app));
Expand Down

0 comments on commit e24831f

Please sign in to comment.