Skip to content

Commit

Permalink
Fixed #984 - OverlayPanel with input closes when typing on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed May 12, 2021
1 parent 5efaf61 commit 247cc64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/overlaypanel/OverlayPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default {
bindResizeListener() {
if (!this.resizeListener) {
this.resizeListener = () => {
if (this.visible) {
if (this.visible && !DomHandler.isAndroid()) {
this.visible = false;
}
};
Expand Down

0 comments on commit 247cc64

Please sign in to comment.