mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
navigate fix on import success
This commit is contained in:
parent
6f75e0bba0
commit
311baaa3d1
@ -122,7 +122,7 @@ const routes: Routes = [
|
||||
canActivate: [OrganizationTypeGuardService],
|
||||
data: { allowedTypes: [OrganizationUserType.Owner, OrganizationUserType.Admin] },
|
||||
children: [
|
||||
{ path: '', pathMatch: 'full', redirectTo: 'export' },
|
||||
{ path: '', pathMatch: 'full', redirectTo: 'import' },
|
||||
{ path: 'import', component: OrgImportComponent, data: { titleId: 'importData' } },
|
||||
{ path: 'export', component: OrgExportComponent, data: { titleId: 'exportVault' } },
|
||||
],
|
||||
|
@ -42,6 +42,7 @@ export class ImportComponent extends BaseImportComponent {
|
||||
ngOnInit() {
|
||||
this.route.parent.parent.params.subscribe(async (params) => {
|
||||
this.organizationId = params.organizationId;
|
||||
this.successNavigate = ['organizations', this.organizationId, 'vault'];
|
||||
super.ngOnInit();
|
||||
});
|
||||
}
|
||||
|
@ -38,6 +38,8 @@ export class ImportComponent implements OnInit {
|
||||
fileContents: string;
|
||||
formPromise: Promise<any>;
|
||||
|
||||
protected successNavigate: any[] = ['vault'];
|
||||
|
||||
constructor(protected i18nService: I18nService, protected analytics: Angulartics2,
|
||||
protected toasterService: ToasterService, protected cipherService: CipherService,
|
||||
protected folderService: FolderService, protected apiService: ApiService,
|
||||
@ -117,7 +119,7 @@ export class ImportComponent implements OnInit {
|
||||
properties: { label: this.format },
|
||||
});
|
||||
this.toasterService.popAsync('success', null, this.i18nService.t('importSuccess'));
|
||||
this.router.navigate(['vault']);
|
||||
this.router.navigate(this.successNavigate);
|
||||
} catch { }
|
||||
} else {
|
||||
this.error(this.i18nService.t('importFormatError'));
|
||||
|
Loading…
Reference in New Issue
Block a user