- {{(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
]