We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53418fb commit a10acc8Copy full SHA for a10acc8
packages/main/src/ComboBox.js
@@ -654,7 +654,7 @@ class ComboBox extends UI5Element {
654
this._tempValue = current;
655
}
656
657
- if (matchingItems.length && (selectionValue !== this._tempValue)) {
+ if (matchingItems.length && (selectionValue !== this._tempValue && this.value !== this._tempValue)) {
658
setTimeout(() => {
659
this.inner.setSelectionRange(selectionValue.length, this._tempValue.length);
660
}, 0);
0 commit comments