Skip to content

Commit 8d05606

Browse files
authored
fix(ui5-input): prevent exception in console when input is clicked on mobile (#3729)
FIXES: 3714
1 parent 48adbbe commit 8d05606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/main/src/Input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ class Input extends UI5Element {
705705

706706
_click(event) {
707707
if (isPhone() && !this.readonly && this.Suggestions) {
708-
this.Suggestions.showAt(this);
708+
this.Suggestions.open();
709709
this.isRespPopoverOpen = true;
710710
}
711711
}

0 commit comments

Comments
 (0)