Merge pull request #243 from vector-im/kegan/reg-errors-176

Fix #176 Password complexity error message
pull/258/head
Matthew Hodgson 2015-10-25 02:12:21 +00:00
commit 1188c4c69f
1 changed files with 6 additions and 0 deletions

View File

@ -173,6 +173,12 @@ module.exports = React.createClass({
case this.FieldErrors.InUse:
strings.push(keys[i]+" is already taken");
break;
case this.FieldErrors.Length:
strings.push(keys[i] + " is not long enough.");
break;
default:
console.error("Unhandled FieldError: %s", bad[keys[i]]);
break;
}
}
var errtxt = strings.join(', ');