Modified Error Message on login-error.

This commit is contained in:
Martin 2021-05-04 21:29:58 +02:00
parent 2b45448423
commit 1665f06e1f

View File

@ -31,7 +31,7 @@ export class LoginComponent implements OnInit {
element => {
const split = element.split('=');
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;
}
if (split[0] === 'id_token') {