You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Text inside draggable elements should be selectable for copy without interfering with drag functionality.
Actual behavior
Text within draggable elements is not selectable because the library captures mouse events for dragging, preventing text selection.
Steps to reproduce
Create a draggable element using Draggable from react-beautiful-dnd.
Add a text element inside the draggable element.
Attempt to select the text using the mouse.
Notice that the text cannot be selected because the drag event is triggered.
Suggested solution?
Add a prop like allowTextSelection or provide a built-in way to allow text selection within draggable elements without needing to manually stop propagation.
Expected behavior
Text inside draggable elements should be selectable for copy without interfering with drag functionality.
Actual behavior
Text within draggable elements is not selectable because the library captures mouse events for dragging, preventing text selection.
Steps to reproduce
Draggable
fromreact-beautiful-dnd
.Suggested solution?
Add a prop like
allowTextSelection
or provide a built-in way to allow text selection within draggable elements without needing to manually stop propagation.Current workaround:
The text was updated successfully, but these errors were encountered: