mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-01 13:13:36 +01:00
Revert accidental cnesting of org routes (#1670)
This commit is contained in:
parent
f4f3e8c574
commit
888892b3e7
@ -1,3 +1,4 @@
|
|||||||
|
<app-navbar></app-navbar>
|
||||||
<div class="org-nav" *ngIf="organization">
|
<div class="org-nav" *ngIf="organization">
|
||||||
<div class="container d-flex">
|
<div class="container d-flex">
|
||||||
<div class="d-flex flex-column">
|
<div class="d-flex flex-column">
|
||||||
@ -35,3 +36,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
|
<app-footer></app-footer>
|
||||||
|
@ -229,15 +229,15 @@ const routes: Routes = [
|
|||||||
(await import("./reports/reports-routing.module")).ReportsRoutingModule,
|
(await import("./reports/reports-routing.module")).ReportsRoutingModule,
|
||||||
},
|
},
|
||||||
{ path: "setup/families-for-enterprise", component: FamiliesForEnterpriseSetupComponent },
|
{ path: "setup/families-for-enterprise", component: FamiliesForEnterpriseSetupComponent },
|
||||||
{
|
|
||||||
path: "organizations",
|
|
||||||
loadChildren: () =>
|
|
||||||
import("./organizations/organization-routing.module").then(
|
|
||||||
(m) => m.OrganizationsRoutingModule
|
|
||||||
),
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "organizations",
|
||||||
|
loadChildren: () =>
|
||||||
|
import("./organizations/organization-routing.module").then(
|
||||||
|
(m) => m.OrganizationsRoutingModule
|
||||||
|
),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
Loading…
Reference in New Issue
Block a user