Skip to content

Commit 417997d

Browse files
committed
fix(select): don't simulate click. Fixes #8181
1 parent a47be46 commit 417997d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: js/utils/tap.js

+4
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,10 @@ function tapIgnoreEvent(e) {
486486
return true;
487487
}
488488

489+
if(e.target.tagName == 'SELECT') {
490+
return true;
491+
}
492+
489493
if (ionic.scroll.isScrolling && ionic.tap.containsOrIsTextInput(e.target)) {
490494
e.preventDefault();
491495
return true;

0 commit comments

Comments
 (0)