Handle Length case. Add default case and whine loudly.
This commit is contained in:
parent
3d3680e42f
commit
3779ff7691
1 changed files with 6 additions and 0 deletions
|
@ -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(', ');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue