diff --git a/src/components/inputs/NumberInput.jsx b/src/components/inputs/NumberInput.jsx index 02cfca5..1f7063b 100644 --- a/src/components/inputs/NumberInput.jsx +++ b/src/components/inputs/NumberInput.jsx @@ -150,11 +150,13 @@ class NumberInput extends React.Component { }} onBlur={() => { console.log("onBlur[%s]", this.state.uuid); + this.setState({editing: false}); this.changeValue(this.state.dirtyValue); }} onPointerUp={() => { console.log("onPointerUp[%s]", this.state.uuid); this._cancelNextChangeEvent = true; + this.setState({editing: false}); this.changeValue(this.state.dirtyValue); }} />