File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,10 @@ const isIOS = () => {
103
103
return iOS ;
104
104
} ;
105
105
106
+ const isAndroid = ( ) => {
107
+ return android || androidPhone ;
108
+ } ;
109
+
106
110
export {
107
111
supportsTouch ,
108
112
isIE ,
@@ -113,4 +117,5 @@ export {
113
117
isDesktop ,
114
118
isCombi ,
115
119
isIOS ,
120
+ isAndroid ,
116
121
} ;
Original file line number Diff line number Diff line change 1
1
import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js" ;
2
2
import litRender from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js" ;
3
3
import ValueState from "@ui5/webcomponents-base/dist/types/ValueState.js" ;
4
- import { isPhone , isSafari } from "@ui5/webcomponents-base/dist/Device.js" ;
4
+ import { isPhone , isAndroid , isSafari } from "@ui5/webcomponents-base/dist/Device.js" ;
5
5
import Integer from "@ui5/webcomponents-base/dist/types/Integer.js" ;
6
6
import { getEffectiveAriaLabelText } from "@ui5/webcomponents-base/dist/util/AriaLabelHelper.js" ;
7
7
import announce from "@ui5/webcomponents-base/dist/util/InvisibleMessage.js" ;
@@ -571,7 +571,7 @@ class ComboBox extends UI5Element {
571
571
this . _clearFocus ( ) ;
572
572
573
573
// autocomplete
574
- if ( this . _autocomplete ) {
574
+ if ( this . _autocomplete && ! isAndroid ( ) ) {
575
575
const item = this . _getFirstMatchingItem ( value ) ;
576
576
this . _applyAtomicValueAndSelection ( item , value , true ) ;
577
577
You can’t perform that action at this time.
0 commit comments