Fix menu not closing after clicking on menu item (#11866)

This commit is contained in:
artur-borys
2020-02-17 16:37:13 +01:00
committed by GitHub
parent b362b36e16
commit c6f6722af7

View File

@@ -834,13 +834,11 @@ export default {
},
closeMenu () {
Array.from(document.getElementsByClassName('droppable')).forEach(droppableElement => {
this.closeDropdown(droppableElement);
});
if (this.isMobile()) {
this.menuIsOpen = false;
Array.from(document.getElementsByClassName('droppable')).forEach(droppableElement => {
droppableElement.classList.remove('down');
droppableElement.lastChild.style.maxHeight = 0;
});
}
},
isMobile () {