Skip to content

Commit 57820dd

Browse files
authored
fix(ui5-multi-combobox): fix livechange behaviour (#2656)
1 parent 5b79982 commit 57820dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/main/src/MultiComboBox.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ class MultiComboBox extends UI5Element {
468468
- value of the host and the internal input should be differnt in case of actual input
469469
- input is called when a key is pressed => keyup should not be called yet
470470
*/
471-
const skipFiring = (this._inputDom.value === this.value) && isIE && !this._keyDown && !!this.placeholder;
471+
const skipFiring = (this._inputDom.value === this.value) && isIE() && !this._keyDown && !!this.placeholder;
472472

473473
if (skipFiring) {
474474
event.preventDefault();

0 commit comments

Comments
 (0)