Fix login providers

This commit is contained in:
mauriziovitale84
2016-09-05 16:15:16 +01:00
parent 35c2433536
commit 3cd0670762
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;
}