mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
fix: title in docs
Co-authored-by: Maksim Karatkevich <m.karatkevich@akveo.com>
This commit is contained in:
parent
87f18ecaba
commit
6458a43809
1 changed files with 13 additions and 0 deletions
|
|
@ -63,6 +63,19 @@ export class NgxAdminLandingPageComponent implements OnDestroy, OnInit {
|
|||
}),
|
||||
filter(item => item),
|
||||
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);
|
||||
}),
|
||||
publishReplay(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue