Browse Source
Bugfix/fix routing for user account page (#4965)
* Fix routing
pull/4969/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
5 deletions
-
apps/client/src/app/pages/user-account/user-account-page-routing.module.ts
|
|
@ -16,17 +16,17 @@ const routes: Routes = [ |
|
|
|
{ |
|
|
|
path: '', |
|
|
|
component: UserAccountSettingsComponent, |
|
|
|
title: internalRoutes.userAccount.title |
|
|
|
title: internalRoutes.account.title |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: internalRoutes.userAccount.subRoutes.membership.path, |
|
|
|
path: internalRoutes.account.subRoutes.membership.path, |
|
|
|
component: UserAccountMembershipComponent, |
|
|
|
title: internalRoutes.userAccount.subRoutes.membership.title |
|
|
|
title: internalRoutes.account.subRoutes.membership.title |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: internalRoutes.userAccount.subRoutes.access.path, |
|
|
|
path: internalRoutes.account.subRoutes.access.path, |
|
|
|
component: UserAccountAccessComponent, |
|
|
|
title: internalRoutes.userAccount.subRoutes.access.title |
|
|
|
title: internalRoutes.account.subRoutes.access.title |
|
|
|
} |
|
|
|
], |
|
|
|
component: UserAccountPageComponent, |
|
|
|