File tree 1 file changed +3
-1
lines changed
client/packages/lowcoder/src/comps/comps/tableComp
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";
34
34
import { SlotConfigContext } from "comps/controls/slotControl" ;
35
35
import { EmptyContent } from "pages/common/styledComponent" ;
36
36
import { messageInstance } from "lowcoder-design" ;
37
+ import { ReactRef , ResizeHandleAxis } from "layout/gridLayoutPropTypes" ;
37
38
38
39
const TitleResizeHandle = styled . span `
39
40
position : absolute;
@@ -345,8 +346,9 @@ const ResizeableTitle = (props: any) => {
345
346
} }
346
347
onResizeStop = { onResizeStop }
347
348
draggableOpts = { { enableUserSelectHack : false } }
348
- handle = { ( ) => (
349
+ handle = { ( axis : ResizeHandleAxis , ref : ReactRef < HTMLDivElement > ) => (
349
350
< TitleResizeHandle
351
+ ref = { ref }
350
352
onClick = { ( e ) => {
351
353
e . preventDefault ( ) ;
352
354
e . stopPropagation ( ) ;
You can’t perform that action at this time.
0 commit comments