Fixed #984 - OverlayPanel with input closes when typing on mobile

pull/1196/head^2
Tuğçe Küçükoğlu 2021-05-12 17:45:49 +03:00
parent 5efaf616e1
commit 247cc64be3
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ export default {
bindResizeListener() {
if (!this.resizeListener) {
this.resizeListener = () => {
if (this.visible) {
if (this.visible && !DomHandler.isAndroid()) {
this.visible = false;
}
};