From 2b33ff003e726d99a4d00593ffd4d3057a4e2509 Mon Sep 17 00:00:00 2001 From: Filip Siderov Date: Tue, 12 Jan 2021 12:26:23 +0200 Subject: [PATCH] fix(ui5-multi-combobox): fix livechange behaviour --- packages/main/src/MultiComboBox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/main/src/MultiComboBox.js b/packages/main/src/MultiComboBox.js index 800a9aee3832..d15598f94cea 100644 --- a/packages/main/src/MultiComboBox.js +++ b/packages/main/src/MultiComboBox.js @@ -468,7 +468,7 @@ class MultiComboBox extends UI5Element { - value of the host and the internal input should be differnt in case of actual input - input is called when a key is pressed => keyup should not be called yet */ - const skipFiring = (this._inputDom.value === this.value) && isIE && !this._keyDown && !!this.placeholder; + const skipFiring = (this._inputDom.value === this.value) && isIE() && !this._keyDown && !!this.placeholder; if (skipFiring) { event.preventDefault();