Web: Components: DropDown: Fixed events for touch devices

This commit is contained in:
Ilya Oleshko 2022-04-29 16:45:45 +03:00
parent 2e33c99230
commit e9d8b382b7

View File

@ -295,7 +295,7 @@ class DropDownContainer extends React.Component {
};
render() {
const { withBackdrop = true, open, theme } = this.props;
const eventTypesProp = isMobile ? { eventTypes: ["touchend"] } : {};
const eventTypesProp = isMobile ? { eventTypes: ["touchend, click"] } : {};
return (
<>