From d14204576b95a22505d3e31380aa58bcf9c486e9 Mon Sep 17 00:00:00 2001 From: tischsoic Date: Fri, 28 Apr 2023 13:09:26 +0200 Subject: [PATCH] IBX-5583: Fix multiselect dropdown not fiering change event for first option when selcted/unselected at least twice in a row --- src/bundle/Resources/public/js/scripts/core/dropdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundle/Resources/public/js/scripts/core/dropdown.js b/src/bundle/Resources/public/js/scripts/core/dropdown.js index 6cda97fcc1..03a6064689 100644 --- a/src/bundle/Resources/public/js/scripts/core/dropdown.js +++ b/src/bundle/Resources/public/js/scripts/core/dropdown.js @@ -183,7 +183,7 @@ this.fitItems(); - if (this.currentSelectedValue !== value) { + if (this.currentSelectedValue !== value || !this.canSelectOnlyOne) { this.fireValueChangedEvent(); this.currentSelectedValue = value;