mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
fix repeated context menu interaction by not erroring
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
e8702aafa5
commit
6424ffb22a
1 changed files with 1 additions and 3 deletions
|
@ -125,9 +125,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
|
|||
});
|
||||
};
|
||||
|
||||
private onCloseMenu = (ev: InputEvent) => {
|
||||
ev.preventDefault();
|
||||
ev.stopPropagation();
|
||||
private onCloseMenu = () => {
|
||||
this.setState({contextMenuPosition: null});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue