Browse Source

Add titles

pull/3978/head
Thomas Kaul 10 months ago
parent
commit
6668ae8d46
  1. 3
      apps/client/src/app/pages/resources/glossary/resources-glossary-routing.module.ts
  2. 3
      apps/client/src/app/pages/resources/guides/resources-guides-routing.module.ts
  3. 3
      apps/client/src/app/pages/resources/markets/resources-markets-routing.module.ts
  4. 4
      apps/client/src/app/pages/resources/overview/resources-overview-routing.module.ts
  5. 3
      apps/client/src/app/pages/resources/resources-page-routing.module.ts

3
apps/client/src/app/pages/resources/glossary/resources-glossary-routing.module.ts

@ -5,8 +5,9 @@ import { ResourcesGlossaryPageComponent } from './resources-glossary.component';
const routes: Routes = [
{
component: ResourcesGlossaryPageComponent,
path: '',
component: ResourcesGlossaryPageComponent
title: $localize`Glossary`
}
];

3
apps/client/src/app/pages/resources/guides/resources-guides-routing.module.ts

@ -5,8 +5,9 @@ import { ResourcesGuidesComponent } from './resources-guides.component';
const routes: Routes = [
{
component: ResourcesGuidesComponent,
path: '',
component: ResourcesGuidesComponent
title: $localize`Guides`
}
];

3
apps/client/src/app/pages/resources/markets/resources-markets-routing.module.ts

@ -5,8 +5,9 @@ import { ResourcesMarketsComponent } from './resources-markets.component';
const routes: Routes = [
{
component: ResourcesMarketsComponent,
path: '',
component: ResourcesMarketsComponent
title: $localize`Markets`
}
];

4
apps/client/src/app/pages/resources/overview/resources-overview-routing.module.ts

@ -5,8 +5,8 @@ import { ResourcesOverviewComponent } from './resources-overview.component';
const routes: Routes = [
{
path: '',
component: ResourcesOverviewComponent
component: ResourcesOverviewComponent,
path: ''
}
];

3
apps/client/src/app/pages/resources/resources-page-routing.module.ts

@ -46,7 +46,8 @@ const routes: Routes = [
).then((m) => m.PersonalFinanceToolsPageModule)
}))
],
path: ''
path: '',
title: $localize`Resources`
}
];

Loading…
Cancel
Save