mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
fix: title in docs
Co-authored-by: Maksim Karatkevich <m.karatkevich@akveo.com>
This commit is contained in:
parent
63ac65eada
commit
c416d894d4
1 changed files with 13 additions and 0 deletions
|
|
@ -63,6 +63,19 @@ export class NgxAdminLandingPageComponent implements OnDestroy, OnInit {
|
||||||
}),
|
}),
|
||||||
filter(item => item),
|
filter(item => item),
|
||||||
tap((item: any) => {
|
tap((item: any) => {
|
||||||
|
switch (item.name) {
|
||||||
|
case 'Installation Guidelines':
|
||||||
|
this.metaDataService.updateTitle(`Ngx-admin - Guideline to install.`);
|
||||||
|
break;
|
||||||
|
case 'Server deployment':
|
||||||
|
case 'Theme System':
|
||||||
|
case 'Change Theme':
|
||||||
|
case 'Backend integration':
|
||||||
|
this.metaDataService.updateTitle(`Ngx-admin - ${item.name}`);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.metaDataService.updateTitle(item.name);
|
||||||
|
}
|
||||||
this.metaDataService.updateDescription(item.description);
|
this.metaDataService.updateDescription(item.description);
|
||||||
}),
|
}),
|
||||||
publishReplay(),
|
publishReplay(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue