Web: Common: Layout: fixed the ability to scroll the page when the dropdown is open

This commit is contained in:
Artem Tarasov 2021-01-25 16:34:56 +03:00
parent 0622f3003f
commit 3c815511ac

View File

@ -44,6 +44,12 @@ class MobileLayout extends Component {
const currentScrollPosition =
this.customScrollElm.scrollTop > 0 ? this.customScrollElm.scrollTop : 0;
if (document.getElementsByClassName("backdrop-active").length > 0) {
const elements = document.getElementsByClassName("backdrop-active");
elements[0].click();
return;
}
if (visibleContent && isMobile && !isTouchDevice) {
return;
}