File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
client/packages/lowcoder/src/comps/comps/tableComp Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ import { useResizeDetector } from "react-resize-detector";
3434import { SlotConfigContext } from "comps/controls/slotControl" ;
3535import { EmptyContent } from "pages/common/styledComponent" ;
3636import { messageInstance } from "lowcoder-design" ;
37+ import { ReactRef , ResizeHandleAxis } from "layout/gridLayoutPropTypes" ;
3738
3839const TitleResizeHandle = styled . span `
3940 position : absolute;
@@ -345,8 +346,9 @@ const ResizeableTitle = (props: any) => {
345346 } }
346347 onResizeStop = { onResizeStop }
347348 draggableOpts = { { enableUserSelectHack : false } }
348- handle = { ( ) => (
349+ handle = { ( axis : ResizeHandleAxis , ref : ReactRef < HTMLDivElement > ) => (
349350 < TitleResizeHandle
351+ ref = { ref }
350352 onClick = { ( e ) => {
351353 e . preventDefault ( ) ;
352354 e . stopPropagation ( ) ;
You can’t perform that action at this time.
0 commit comments