Skip to content

Commit

Permalink
Update utils.js
Browse files Browse the repository at this point in the history
Remove the binding on "fc-multipleselect" -> create bug of note binding correctly action on select.
Plus  : where does it come from?
  • Loading branch information
Francois2ex authored Nov 7, 2024
1 parent fa2f43d commit 8eee1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/filter-control/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ export function createControls (that, header) {
}, that.options.searchTimeOut)
})

header.off('change', 'select', '.fc-multipleselect').on('change', 'select', '.fc-multipleselect', ({ currentTarget, keyCode }) => {
header.off('change', 'select').on('change', 'select', ({ currentTarget, keyCode }) => {
const $selectControl = $(currentTarget)
const value = $selectControl.val()

Expand Down

0 comments on commit 8eee1de

Please sign in to comment.