Remove React warning
Fire onOptionChange in componentWillMount, otherwise end up trying to update state effectively in a render method, which is bad.pull/21833/head
parent
6f4b080934
commit
e139f5212a
|
@ -43,8 +43,10 @@ export default class CountryDropdown extends React.Component {
|
||||||
this.state = {
|
this.state = {
|
||||||
searchQuery: '',
|
searchQuery: '',
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!props.value) {
|
componentWillMount() {
|
||||||
|
if (!this.props.value) {
|
||||||
// If no value is given, we start with the first
|
// If no value is given, we start with the first
|
||||||
// country selected, but our parent component
|
// country selected, but our parent component
|
||||||
// doesn't know this, therefore we do this.
|
// doesn't know this, therefore we do this.
|
||||||
|
|
Loading…
Reference in New Issue