remove space

apologies – this happened during the manual merge.
This commit is contained in:
Matthew Taylor 2017-11-06 09:07:18 -05:00
parent 8697922d3b
commit 88b2d3bf8f

View file

@ -32,7 +32,7 @@ export default function (Input) {
handleChange (e) {
const isNumeric = typeof this.props.value === 'number';
const validatesNumeric = isNumeric ? !isNaN(e.target.value) : true;
if (e.target.value !== null && validatesNumeric ) {
if (e.target.value !== null && validatesNumeric) {
let val = Number(e.target.value);
if (typeof this.props.max !== 'undefined' && val > Number(this.props.max)) {
val = this.props.max;