#328449 Change error message for unsuccessful login.
This commit is contained in:
Родитель
abc2f1e09d
Коммит
2d38df348f
|
@ -44,6 +44,9 @@ export class LoginComponent implements OnInit {
|
|||
this._routerExtensions.navigate(['events', { clearHistory: true }]);
|
||||
})
|
||||
.catch((e) => {
|
||||
if (e.message && e.message.toLowerCase() === 'invalid username or password.') {
|
||||
e.message = 'Invalid e-mail or password.'; // :|
|
||||
}
|
||||
this._alertsService.showError(e && e.message);
|
||||
});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче