Skip to content

Commit

Permalink
IBX-5583: Fix multiselect dropdown not firing change event (#776)
Browse files Browse the repository at this point in the history
IBX-5583: Fix multiselect dropdown not fiering change event for first option when selcted/unselected at least twice in a row
  • Loading branch information
tischsoic authored May 4, 2023
1 parent 80c1166 commit 8c09185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundle/Resources/public/js/scripts/core/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@

this.fitItems();

if (this.currentSelectedValue !== value) {
if (this.currentSelectedValue !== value || !this.canSelectOnlyOne) {
this.fireValueChangedEvent();

this.currentSelectedValue = value;
Expand Down

0 comments on commit 8c09185

Please sign in to comment.