Fix demo shell code

This commit is contained in:
Denys Vuika
2016-11-01 16:48:04 +00:00
parent 8cffb16132
commit 2e95e02a80
2 changed files with 2 additions and 2 deletions

View File

@@ -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') {

View File

@@ -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 {