Fix not autoSelecting first item in dropdown
Fixes https://github.com/vector-im/riot-web/issues/3686pull/21833/head
parent
aac0238882
commit
0d4ab07250
|
@ -115,7 +115,7 @@ export default class Dropdown extends React.Component {
|
|||
|
||||
componentWillReceiveProps(nextProps) {
|
||||
this._reindexChildren(nextProps.children);
|
||||
const firstChild = React.Children.toArray(nextProps.children)[0];
|
||||
const firstChild = nextProps.children[0];
|
||||
this.setState({
|
||||
highlightedOption: firstChild ? firstChild.key : null,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue