Merge pull request #676 from Alfresco/dev-mvitale-674

Fix login providers
This commit is contained in:
Mario Romano
2016-09-05 17:22:47 +01:00
committed by GitHub
6 changed files with 62 additions and 9 deletions

View File

@@ -49,6 +49,8 @@ export class LoginDemoComponent {
this.providers = 'ALL';
} else if (checked) {
this.providers = 'ECM';
} else if (!checked && this.providers === 'ALL') {
this.providers = 'BPM';
} else {
this.providers = undefined;
}
@@ -59,6 +61,8 @@ export class LoginDemoComponent {
this.providers = 'ALL';
} else if (checked) {
this.providers = 'BPM';
} else if (!checked && this.providers === 'ALL') {
this.providers = 'ECM';
} else {
this.providers = undefined;
}