Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(list, list-item): calcite-select becomes unresponsive in a list-i…
…tem if drag-disabled is true (#8957) **Related Issue:** #8954 ## Summary - Sortablejs by default calls `event.preventDefault()` because the option `preventOnFilter` is true by default. - This affects any elements slotted within the `drag-disabled` list item. - In order to fix this, we move the `filter` selector to just the `calcite-handle` instead of the whole `list-item`. ```js filter: ".ignore-elements", // Selectors that do not lead to dragging (String or Function) preventOnFilter: true, // Call `event.preventDefault()` when triggered `filter` ```
- Loading branch information