You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-11 20:22:36 +03:00
Remove React warning
Fire onOptionChange in componentWillMount, otherwise end up trying to update state effectively in a render method, which is bad.
This commit is contained in:
@@ -43,8 +43,10 @@ export default class CountryDropdown extends React.Component {
|
||||
this.state = {
|
||||
searchQuery: '',
|
||||
}
|
||||
}
|
||||
|
||||
if (!props.value) {
|
||||
componentWillMount() {
|
||||
if (!this.props.value) {
|
||||
// If no value is given, we start with the first
|
||||
// country selected, but our parent component
|
||||
// doesn't know this, therefore we do this.
|
||||
|
||||
Reference in New Issue
Block a user