Modified Error Message on login-error.
This commit is contained in:
parent
2b45448423
commit
1665f06e1f
@ -31,7 +31,7 @@ export class LoginComponent implements OnInit {
|
|||||||
element => {
|
element => {
|
||||||
const split = element.split('=');
|
const split = element.split('=');
|
||||||
if (split[0] === 'error') {
|
if (split[0] === 'error') {
|
||||||
this.snackbar.show(split[1], 'Schließen', 5000);
|
this.snackbar.show('Fehler bei der Anmeldung: ' + split[1], 'Schließen', 5000);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (split[0] === 'id_token') {
|
if (split[0] === 'id_token') {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user