mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-21 14:20:07 +00:00
feat(console): refresh roles, user-grants and project-members based on previous navigation (#728)
* feat: refresh roles, user-grants, project-members * refresh keys * user grants on granted projects * refresh on member changes * membership refresh * lint
This commit is contained in:
@@ -103,7 +103,11 @@ export class ProjectMembersComponent {
|
||||
this.toast.showError(error);
|
||||
});
|
||||
}
|
||||
}));
|
||||
})).then(() => {
|
||||
setTimeout(() => {
|
||||
this.changePage();
|
||||
}, 1000);
|
||||
});
|
||||
}
|
||||
|
||||
public isAllSelected(): boolean {
|
||||
@@ -141,6 +145,9 @@ export class ProjectMembersComponent {
|
||||
user.id, roles);
|
||||
}
|
||||
})).then(() => {
|
||||
setTimeout(() => {
|
||||
this.changePage();
|
||||
}, 1000);
|
||||
this.toast.showInfo('PROJECT.TOAST.MEMBERSADDED', true);
|
||||
}).catch(error => {
|
||||
this.toast.showError(error);
|
||||
|
Reference in New Issue
Block a user