Rename "my settings" to "my account" in menu
This commit is contained in:
parent
6cca7360eb
commit
379acb21bc
|
@ -15,6 +15,11 @@ const myAccountRoutes: Routes = [
|
||||||
component: MyAccountComponent,
|
component: MyAccountComponent,
|
||||||
canActivateChild: [ MetaGuard, LoginGuard ],
|
canActivateChild: [ MetaGuard, LoginGuard ],
|
||||||
children: [
|
children: [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
redirectTo: 'settings',
|
||||||
|
pathMatch: 'full'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'settings',
|
path: 'settings',
|
||||||
component: MyAccountSettingsComponent,
|
component: MyAccountSettingsComponent,
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
My public profile
|
My public profile
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a i18n routerLink="/my-account/settings" class="dropdown-item" title="My settings">
|
<a i18n routerLink="/my-account" class="dropdown-item" title="My account">
|
||||||
My settings
|
My account
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a i18n (click)="logout($event)" class="dropdown-item" title="Log out" href="#">
|
<a i18n (click)="logout($event)" class="dropdown-item" title="Log out" href="#">
|
||||||
|
|
|
@ -57,7 +57,8 @@ git commit package.json client/package.json -m "Bumped to version $version"
|
||||||
git tag -s -a "$version" -m "$version"
|
git tag -s -a "$version" -m "$version"
|
||||||
|
|
||||||
npm run build
|
npm run build
|
||||||
rm "./client/dist/en-US/stats.json"
|
rm "./client/dist/en_US/stats.json"
|
||||||
|
rm "./client/dist/embed-stats.json"
|
||||||
|
|
||||||
# Creating the archives
|
# Creating the archives
|
||||||
(
|
(
|
||||||
|
|
Loading…
Reference in New Issue