feature/IO-3545-Production-Board-List-DND - Checkpoint
This commit is contained in:
@@ -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 || {})} />
|
||||
|
||||
Reference in New Issue
Block a user