1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-06-24 16:41:47 +03:00

Fixed pressing space or clicking dd input closes dd

This commit is contained in:
Luke Barnard
2017-05-18 16:58:57 +01:00
parent 90ee0c7ad9
commit f99fa3ac1a

View File

@ -152,10 +152,12 @@ export default class Dropdown extends React.Component {
}
_onInputClick(ev) {
this.setState({
expanded: !this.state.expanded,
});
ev.preventDefault();
if (!this.state.expanded) {
this.setState({
expanded: !this.state.expanded,
});
ev.preventDefault();
}
}
_onMenuOptionClick(dropdownKey) {