diff --git a/src/@fuse/components/navigation/horizontal/collapsable/collapsable.component.html b/src/@fuse/components/navigation/horizontal/collapsable/collapsable.component.html index 1eb155e3..c0980313 100644 --- a/src/@fuse/components/navigation/horizontal/collapsable/collapsable.component.html +++ b/src/@fuse/components/navigation/horizontal/collapsable/collapsable.component.html @@ -42,10 +42,10 @@ {{item.icon}} - {{(item.translate | translate) || item.title}} + {{item.title}} - {{(item.badge.translate | translate) || item.badge.title}} + {{item.badge.title}} keyboard_arrow_right diff --git a/src/@fuse/components/navigation/horizontal/item/item.component.html b/src/@fuse/components/navigation/horizontal/item/item.component.html index 75101981..d0ad9767 100644 --- a/src/@fuse/components/navigation/horizontal/item/item.component.html +++ b/src/@fuse/components/navigation/horizontal/item/item.component.html @@ -38,10 +38,10 @@ {{item.icon}} - {{(item.translate | translate) || item.title}} + {{item.title}} - {{(item.badge.translate | translate) || item.badge.title}} + {{item.badge.title}} diff --git a/src/@fuse/components/navigation/vertical/collapsable/collapsable.component.html b/src/@fuse/components/navigation/vertical/collapsable/collapsable.component.html index cc0eefc9..cc8ab10f 100644 --- a/src/@fuse/components/navigation/vertical/collapsable/collapsable.component.html +++ b/src/@fuse/components/navigation/vertical/collapsable/collapsable.component.html @@ -45,10 +45,10 @@ {{item.icon}} - {{(item.translate | translate) || item.title}} + {{item.title}} - {{(item.badge.translate | translate) || item.badge.title}} + {{item.badge.title}} keyboard_arrow_right diff --git a/src/@fuse/components/navigation/vertical/group/group.component.html b/src/@fuse/components/navigation/vertical/group/group.component.html index e83d601a..72ea1650 100644 --- a/src/@fuse/components/navigation/vertical/group/group.component.html +++ b/src/@fuse/components/navigation/vertical/group/group.component.html @@ -1,7 +1,7 @@
- {{(item.translate | translate) || item.title}} + {{item.title}}
diff --git a/src/@fuse/components/navigation/vertical/item/item.component.html b/src/@fuse/components/navigation/vertical/item/item.component.html index 75101981..d0ad9767 100644 --- a/src/@fuse/components/navigation/vertical/item/item.component.html +++ b/src/@fuse/components/navigation/vertical/item/item.component.html @@ -38,10 +38,10 @@ {{item.icon}} - {{(item.translate | translate) || item.title}} + {{item.title}} - {{(item.badge.translate | translate) || item.badge.title}} + {{item.badge.title}} diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 9de91834..1b49411c 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -86,17 +86,17 @@ export class AppComponent implements OnInit, OnDestroy * This is related to ngxTranslate module and below there is a temporary fix while we * are moving the multi language implementation over to the Angular's core language * service. - **/ + */ // Set the default language to 'en' and then back to 'tr'. // '.use' cannot be used here as ngxTranslate won't switch to a language that's already // been selected and there is no way to force it, so we overcome the issue by switching // the default language back and forth. /** - setTimeout(() => { - this._translateService.setDefaultLang('en'); - this._translateService.setDefaultLang('tr'); - }); + * setTimeout(() => { + * this._translateService.setDefaultLang('en'); + * this._translateService.setDefaultLang('tr'); + * }); */ /** diff --git a/src/app/main/documentation/components/navigation/navigation.component.ts b/src/app/main/documentation/components/navigation/navigation.component.ts index f1821229..07610fd1 100644 --- a/src/app/main/documentation/components/navigation/navigation.component.ts +++ b/src/app/main/documentation/components/navigation/navigation.component.ts @@ -48,9 +48,9 @@ export class DocsComponentsNavigationComponent { // Update the badge title this._fuseNavigationService.updateNavigationItem('mail', { - badge: { - title: 35 - } + badge: { + title: 35 + } }); } @@ -68,7 +68,7 @@ export class DocsComponentsNavigationComponent }; this._fuseNavigationService.updateNavigationItem('calendar', { - type: 'collapsable', + type : 'collapsable', children: [ newNavItem ]