mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
Fixed: Additional UI number input fixes
This commit is contained in:
@@ -122,7 +122,8 @@ class TextInput extends Component {
|
||||
value,
|
||||
hasError,
|
||||
hasWarning,
|
||||
hasButton
|
||||
hasButton,
|
||||
onBlur
|
||||
} = this.props;
|
||||
|
||||
return (
|
||||
@@ -143,6 +144,7 @@ class TextInput extends Component {
|
||||
value={value}
|
||||
onChange={this.onChange}
|
||||
onFocus={this.onFocus}
|
||||
onBlur={onBlur}
|
||||
onKeyUp={this.onKeyUp}
|
||||
onMouseDown={this.onMouseDown}
|
||||
onMouseUp={this.onMouseUp}
|
||||
@@ -164,6 +166,7 @@ TextInput.propTypes = {
|
||||
hasButton: PropTypes.bool,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
onFocus: PropTypes.func,
|
||||
onBlur: PropTypes.func,
|
||||
onSelectionChange: PropTypes.func
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user