We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cadbf16 commit a0cf873Copy full SHA for a0cf873
1 file changed
packages/main/src/MultiComboBox.ts
@@ -1475,6 +1475,12 @@ class MultiComboBox extends UI5Element implements IFormInputElement {
1475
innerInput.setSelectionRange(matchingItem.text!.length, matchingItem.text!.length);
1476
this.open = false;
1477
} else {
1478
+ // If dropdown is open with a focused item, just close it instead of submitting
1479
+ if (this.open && this._getList()._itemNavigation._currentIndex >= 0) {
1480
+ this.open = false;
1481
+ return;
1482
+ }
1483
+
1484
if (this._lastValue !== this.value) {
1485
this._inputChange();
1486
}
0 commit comments