File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
client/packages/lowcoder/src/comps/comps/tableLiteComp Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ export function useTableHeights(
83
83
84
84
// Calculate available height for table body
85
85
const bodyHeight = Math . max ( 0 , containerHeight - totalUsedSpace ) ;
86
+
87
+ console . log ( 'Container height:' , containerHeight ) ;
88
+ console . log ( 'Body height calculated:' , bodyHeight ) ;
89
+
86
90
87
91
return {
88
92
containerStyle : {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const MainContainer = styled.div<{
8
8
} > `
9
9
display: flex;
10
10
flex-direction: column;
11
- height: ${ props => props . $mode === 'FIXED' && props . $height ? ` ${ props . $height } px` : ' 100%' } ;
11
+ height: 100%;
12
12
overflow: hidden;
13
13
position: relative;
14
14
` ;
You can’t perform that action at this time.
0 commit comments