Skip to content

Commit

Permalink
Fixed highlight of email field for "unknown user" in forgot password …
Browse files Browse the repository at this point in the history
…flow
  • Loading branch information
kevinansfield committed Mar 21, 2019
1 parent 97f181b commit f89b138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/signin.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default Controller.extend(ValidationEngine, {

this.set('flowErrors', message);

if (message.match(/no user with that email/)) {
if (message.match(/no user|not found/)) {
this.get('signin.errors').add('identification', '');
}
} else {
Expand Down

0 comments on commit f89b138

Please sign in to comment.