Skip to content

Commit

Permalink
fix: project filter (#9651) (#9709)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Crenshaw <michael@crenshaw.dev>
  • Loading branch information
crenshaw-dev committed Jun 21, 2022
1 parent 48c2e0b commit 93bf321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/shared/services/applications-service.ts
Expand Up @@ -143,7 +143,7 @@ export class ApplicationsService {
const searchOptions = optionsToSearch(options);
search.set('fields', searchOptions.fields);
search.set('selector', searchOptions.selector);
query?.projects?.forEach(project => search.append('project', project));
query?.projects?.forEach(project => search.append('projects', project));
}
const searchStr = search.toString();
const url = `/stream/applications${(searchStr && '?' + searchStr) || ''}`;
Expand Down

0 comments on commit 93bf321

Please sign in to comment.