Browse Source

[SM-602] Fixing merge conflict, changing handleError to return ProjectView instead of deprecated ProjectPermissionDetailView (#5296)

pull/5304/head
cd-bitwarden 3 years ago committed by GitHub
parent
commit
9ae4bdfef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      bitwarden_license/bit-web/src/app/secrets-manager/projects/project/project.component.ts

2
bitwarden_license/bit-web/src/app/secrets-manager/projects/project/project.component.ts

@ -63,7 +63,7 @@ export class ProjectComponent implements OnInit, OnDestroy {
handleError = () => { handleError = () => {
const projectsListUrl = `/sm/${this.organizationId}/projects/`; const projectsListUrl = `/sm/${this.organizationId}/projects/`;
this.router.navigate([projectsListUrl]); this.router.navigate([projectsListUrl]);
return new ProjectPermissionDetailsView(); return new ProjectView();
}; };
ngOnDestroy(): void { ngOnDestroy(): void {

Loading…
Cancel
Save