Installed version: 2.2.1
I have the following dropdown configuration:
dropdownSelector
.dropdown({
fullTextSearch: true,
preserveHTML: true,
onChange,
action: 'select',
onHide: this.onHide,
onShow: this.onShow,
transition
});
I am using the 'select' action since I don't want the current text to be changed.
Prior version 2.2.x, it works fine.
After the upgrade, the 'onChange' is not dispatched when clicking the dropdown item - but, it dispatched when moving around with the keyboard arrow keys.
I also tried to add allowReselection: true but it did not fix it.
Any idea?
Clicking the item is not doing anything, but moving around with the keyboard works.

When I remove the 'select' action it works, but it changed the selected text.