diff --git a/src/components/DragHandle.tsx b/src/components/DragHandle.tsx index c8208d46..738043ad 100644 --- a/src/components/DragHandle.tsx +++ b/src/components/DragHandle.tsx @@ -20,7 +20,7 @@ function getDragHandleClass(isStatic: boolean) { } export function DragHandle(props: PropsWithChildren): JSX.Element { - const { children, className, disabled, el =
, ignoredChildren = `textarea, input, select, button` } = props; + const { children, className, disabled, el =
, ignoredChildren = `a, textarea, input, select, button` } = props; const onMouseDown = useCallback( (e: MouseEvent) => { const targets = e.nativeEvent.composedPath();