Fix click event handling when clicking outside of an open dropdown menu (#31251)

This commit is contained in:
Claire 2024-08-01 22:50:36 +02:00 committed by GitHub
parent da5b45a573
commit afdfeb5856
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ class DropdownMenu extends PureComponent {
if (this.node && !this.node.contains(e.target)) {
this.props.onClose();
e.stopPropagation();
e.preventDefault();
}
};