Merge pull request #3467 from rwjblue/update-validation-to-match-server-error

Update validation to match server error.
This commit is contained in:
Hannah Wolfe 2014-07-31 07:46:57 +01:00
commit 3ec5a5e978

View File

@ -5,7 +5,7 @@ var ForgotValidator = Ember.Object.create({
if (!validator.isEmail(data.email)) {
validationErrors.push({
message: 'Invalid Email'
message: 'Invalid email address'
});
}