Skip to content

Commit dd675fe

Browse files
fix: UI error with ApplicationSet in any namespace (cherry-pick #23601) (#23604)
Signed-off-by: jaqxues <[email protected]> Co-authored-by: jaqxues <[email protected]>
1 parent c215dbf commit dd675fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/app/shared/services/applications-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ export class ApplicationsService {
547547
public async getApplicationSet(name: string, namespace: string): Promise<models.ApplicationSet> {
548548
return requests
549549
.get(`/applicationsets/${name}`)
550-
.query({namespace})
550+
.query({appsetNamespace: namespace})
551551
.then(res => res.body as models.ApplicationSet);
552552
}
553553
}

0 commit comments

Comments
 (0)