File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
client/packages/lowcoder/src/comps/comps/tableComp Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -553,11 +553,6 @@ function ResizeableTable<RecordType extends object>(props: CustomTableProps<Reco
553
553
} else {
554
554
allColumnFixed = false ;
555
555
}
556
- if ( allColumnFixed && index === props . columns . length - 1 ) {
557
- // all column fixed, the last column fill extra space
558
- colWidth = "auto" ;
559
- minWidth = resizeWidth ;
560
- }
561
556
return {
562
557
...restCol ,
563
558
RC_TABLE_INTERNAL_COL_DEFINE : {
@@ -583,14 +578,6 @@ function ResizeableTable<RecordType extends object>(props: CustomTableProps<Reco
583
578
width : resizeWidth ,
584
579
title : col . titleText ,
585
580
viewModeResizable : props . viewModeResizable ,
586
- // onResize: (width: number) => {
587
- // if (width) {
588
- // setResizeData({
589
- // index: index,
590
- // width: width,
591
- // });
592
- // }
593
- // },
594
581
onResize : ( width : React . SyntheticEvent ) => {
595
582
if ( width ) {
596
583
setResizeData ( {
You can’t perform that action at this time.
0 commit comments