feature/IO-3545-Production-Board-List-DND - Checkpoint

This commit is contained in:
Dave
2026-02-03 15:01:10 -05:00
parent da0462f14c
commit 3acec55c0e

View File

@@ -19,7 +19,12 @@ const ResizableComponent = forwardRef((props, ref) => {
draggableOpts={{ enableUserSelectHack: false }}
resizeHandles={["e"]}
handle={(axis, handleRef) => (
<span ref={handleRef} className={`react-resizable-handle react-resizable-handle-${axis}`} />
<span
ref={handleRef}
className={`react-resizable-handle react-resizable-handle-${axis}`}
onClick={(e) => e.stopPropagation()}
style={{ width: '10px', right: '-5px', cursor: 'col-resize' }}
/>
)}
>
<th ref={ref} {...restProps} {...(dragAttributes || {})} {...(dragListeners || {})} />