Handle Length case. Add default case and whine loudly.
This commit is contained in:
parent
3d3680e42f
commit
3779ff7691
|
@ -173,6 +173,12 @@ module.exports = React.createClass({
|
||||||
case this.FieldErrors.InUse:
|
case this.FieldErrors.InUse:
|
||||||
strings.push(keys[i]+" is already taken");
|
strings.push(keys[i]+" is already taken");
|
||||||
break;
|
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(', ');
|
var errtxt = strings.join(', ');
|
||||||
|
|
Loading…
Reference in New Issue