Handle Length case. Add default case and whine loudly.

pull/243/head
Kegan Dougal 2015-10-21 17:45:53 +01:00
parent 3d3680e42f
commit 3779ff7691
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(', ');