From 88b2d3bf8f4c854162dc4b33a04b167d82e4ce81 Mon Sep 17 00:00:00 2001 From: Matthew Taylor Date: Mon, 6 Nov 2017 09:07:18 -0500 Subject: [PATCH] remove space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit apologies – this happened during the manual merge. --- src/components/forms/live-input-hoc.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/forms/live-input-hoc.jsx b/src/components/forms/live-input-hoc.jsx index 30792962..266477d1 100644 --- a/src/components/forms/live-input-hoc.jsx +++ b/src/components/forms/live-input-hoc.jsx @@ -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;