From 7b59c9df2905cc0ccfb302c38375901db9a8e60d Mon Sep 17 00:00:00 2001 From: Konstantinos Kamaropoulos Date: Mon, 2 Mar 2020 14:06:26 +0200 Subject: [PATCH] feat: Update page titles --- src/app/chart/chart-routing.module.ts | 2 +- src/app/home/home-routing.module.ts | 2 +- src/app/map/map-routing.module.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/chart/chart-routing.module.ts b/src/app/chart/chart-routing.module.ts index ce24975..8a3090d 100644 --- a/src/app/chart/chart-routing.module.ts +++ b/src/app/chart/chart-routing.module.ts @@ -6,7 +6,7 @@ import { ChartComponent } from './chart.component'; const routes: Routes = [ // Module is lazy loaded, see app-routing.module.ts - { path: '', component: ChartComponent, data: { title: extract('Chart') } } + { path: '', component: ChartComponent, data: { title: extract('Chart | Aiolos') } } ]; @NgModule({ diff --git a/src/app/home/home-routing.module.ts b/src/app/home/home-routing.module.ts index 19a0f64..f9e8c24 100644 --- a/src/app/home/home-routing.module.ts +++ b/src/app/home/home-routing.module.ts @@ -8,7 +8,7 @@ import { Shell } from '@app/shell/shell.service'; const routes: Routes = [ Shell.childRoutes([ { path: '', redirectTo: '/home', pathMatch: 'full' }, - { path: 'home', component: HomeComponent, data: { title: extract('Home') } } + { path: 'home', component: HomeComponent, data: { title: extract('Home | Aiolos') } } ]) ]; diff --git a/src/app/map/map-routing.module.ts b/src/app/map/map-routing.module.ts index fec8d56..54bb85c 100644 --- a/src/app/map/map-routing.module.ts +++ b/src/app/map/map-routing.module.ts @@ -6,7 +6,7 @@ import { MapComponent } from './map.component'; const routes: Routes = [ // Module is lazy loaded, see app-routing.module.ts - { path: '', component: MapComponent, data: { title: extract('Map') } } + { path: '', component: MapComponent, data: { title: extract('Map | Aiolos') } } ]; @NgModule({