-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
IBX-5583: Fix multiselect dropdown not firing change event #776
Conversation
… option when selcted/unselected at least twice in a row
@@ -183,7 +183,7 @@ | |||
|
|||
this.fitItems(); | |||
|
|||
if (this.currentSelectedValue !== value) { | |||
if (this.currentSelectedValue !== value || !this.canSelectOnlyOne) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: for multi-select dropdown, we want to fire the event every single time.
Kudos, SonarCloud Quality Gate passed!
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QA approved on IbexaDXP 4.5 commerce.
Fix multi-select dropdown not firing change event for the first option when selected/unselected at least twice in a row