From c6518dd6c5d8965950c4667bd657f5b5f0805cbc Mon Sep 17 00:00:00 2001 From: Maurizio Vitale Date: Wed, 18 Oct 2017 11:54:09 +0100 Subject: [PATCH] Fix dev build (#2491) --- .../app/components/app-layout/app-layout.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo-shell-ng2/app/components/app-layout/app-layout.component.ts b/demo-shell-ng2/app/components/app-layout/app-layout.component.ts index 06c3bc2cd6..de34bbb17a 100644 --- a/demo-shell-ng2/app/components/app-layout/app-layout.component.ts +++ b/demo-shell-ng2/app/components/app-layout/app-layout.component.ts @@ -16,7 +16,7 @@ */ import { Component, ViewEncapsulation } from '@angular/core'; -import { AlfrescoTranslationService, UserPreferencesService } from 'ng2-alfresco-core'; +import { UserPreferencesService } from 'ng2-alfresco-core'; @Component({ templateUrl: 'app-layout.component.html', @@ -45,7 +45,7 @@ export class AppLayoutComponent { { href: '/about', icon: 'info_outline', title: 'About' } ]; - constructor(private translateService: AlfrescoTranslationService, private preferences: UserPreferencesService) {} + constructor(private preferences: UserPreferencesService) {} changeLanguage(lang: string) { this.preferences.locale = lang;