mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Fix not autoSelecting first item in dropdown
Fixes https://github.com/vector-im/riot-web/issues/3686
This commit is contained in:
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
Block a user