IO-1412 Fixed column resize drag speed

This commit is contained in:
swtmply
2023-04-14 02:53:04 +08:00
parent 1fb856f95f
commit c7ff893397

View File

@@ -14,6 +14,14 @@ export default function ResizableComponent(props) {
height={0}
onResize={onResize}
draggableOpts={{ enableUserSelectHack: false }}
handle={
<span
className="react-resizable-handle"
onClick={(e) => {
e.stopPropagation();
}}
/>
}
>
<th {...restProps} />
</Resizable>