parent
048d6968b0
commit
319cfb278c
@ -53,6 +53,12 @@ export default class Input extends Component {
|
|||||||
value: this.props.value
|
value: this.props.value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentWillReceiveProps (newProps) {
|
||||||
|
if (newProps.value !== this.props.value) {
|
||||||
|
this.setValue(newProps.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { value } = this.state;
|
const { value } = this.state;
|
||||||
const { children, className, disabled, error, label, hint, multiLine, rows, type } = this.props;
|
const { children, className, disabled, error, label, hint, multiLine, rows, type } = this.props;
|
||||||
|
Loading…
Reference in New Issue
Block a user