1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 05:43:16 +00:00

navigate fix on import success

This commit is contained in:
Kyle Spearrin
2018-07-05 23:44:58 -04:00
parent 6f75e0bba0
commit 311baaa3d1
3 changed files with 5 additions and 2 deletions

View File

@@ -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' } },
],