Fix NumberInput when displayValue is NaN
This commit is contained in:
parent
692332659a
commit
0ebc2cacc7
|
@ -31,8 +31,10 @@ class NumberTextInput extends React.Component {
|
||||||
const { value } = this.state
|
const { value } = this.state
|
||||||
const displayValue = this.props.formatNumber(value)
|
const displayValue = this.props.formatNumber(value)
|
||||||
|
|
||||||
|
const inputValue = isNaN(displayValue) ? 0 : displayValue
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<input {...this.props} type="text" value={displayValue} onChange={this.handleChange}/>
|
<input {...this.props} type="text" value={inputValue} onChange={this.handleChange}/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue