File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
client/packages/lowcoder/src/comps/comps/tableLiteComp/parts Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const MainContainer = styled.div<{
8
8
$mode : 'AUTO' | 'FIXED' ;
9
9
$showHorizontalScrollbar : boolean ;
10
10
$showVerticalScrollbar : boolean ;
11
- virtual : boolean ;
11
+ $ virtual : boolean ;
12
12
} > `
13
13
display: flex;
14
14
flex-direction: column;
@@ -18,13 +18,13 @@ const MainContainer = styled.div<{
18
18
/* Critical CSS controls for SimpleBar */
19
19
20
20
21
- ${ props => ( ! props . $showHorizontalScrollbar || props . virtual ) && `
21
+ ${ props => ( ! props . $showHorizontalScrollbar || props . $ virtual) && `
22
22
div.simplebar-horizontal {
23
23
visibility: hidden !important;
24
24
}
25
25
` }
26
26
27
- ${ props => ( ! props . $showVerticalScrollbar || props . virtual ) && `
27
+ ${ props => ( ! props . $showVerticalScrollbar || props . $ virtual) && `
28
28
div.simplebar-vertical {
29
29
visibility: hidden !important;
30
30
}
@@ -133,7 +133,7 @@ export const TableContainer: React.FC<TableContainerProps> = ({
133
133
ref = { containerRef }
134
134
$showHorizontalScrollbar = { showHorizontalScrollbar }
135
135
$showVerticalScrollbar = { showVerticalScrollbar }
136
- virtual = { virtual }
136
+ $ virtual= { virtual }
137
137
>
138
138
{ /* Sticky above toolbar - always visible */ }
139
139
{ stickyToolbar && toolbarPosition === 'above' && showToolbar && (
You can’t perform that action at this time.
0 commit comments