diff --git a/demo-shell-ng2/app/components/login/login-demo.component.ts b/demo-shell-ng2/app/components/login/login-demo.component.ts index 107953f260..a95c519933 100644 --- a/demo-shell-ng2/app/components/login/login-demo.component.ts +++ b/demo-shell-ng2/app/components/login/login-demo.component.ts @@ -63,7 +63,7 @@ export class LoginDemoComponent implements OnInit { if (this.providers === 'BPM') { this.isECM = false; this.isBPM = true; - } else if (this.providers == 'ECM') { + } else if (this.providers === 'ECM') { this.isECM = true; this.isBPM = false; } else if (this.providers === 'ALL') { diff --git a/demo-shell-ng2/app/components/setting/setting.component.ts b/demo-shell-ng2/app/components/setting/setting.component.ts index abd7c43a6a..d33e258c91 100644 --- a/demo-shell-ng2/app/components/setting/setting.component.ts +++ b/demo-shell-ng2/app/components/setting/setting.component.ts @@ -35,7 +35,7 @@ export class SettingComponent { constructor(public alfrescoSettingsService: AlfrescoSettingsService) { this.ecmHost = this.alfrescoSettingsService.ecmHost; - this.bpmHost = this.alfrescoSettingsService.bpmHost + this.bpmHost = this.alfrescoSettingsService.bpmHost; } public onChangeECMHost(event: KeyboardEvent): void {