Skip to content

Commit

Permalink
Remove stopPropagation from onMouseDown on multi select items
Browse files Browse the repository at this point in the history
  • Loading branch information
rkulinski committed Mar 29, 2022
1 parent b85bbbe commit 9a7fa33
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/react-select/src/Select.tsx
Expand Up @@ -1675,7 +1675,6 @@ export default class Select<
onTouchEnd: () => this.removeValue(opt),
onMouseDown: (e) => {
e.preventDefault();
e.stopPropagation();
},
}}
data={opt}
Expand Down

0 comments on commit 9a7fa33

Please sign in to comment.