We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f71c2 commit 3ae83d5Copy full SHA for 3ae83d5
client/packages/lowcoder/src/comps/comps/tableLiteComp/parts/TableContainer.tsx
@@ -58,7 +58,6 @@ const DefaultToolbar = styled.div`
58
const TableSection = styled.div<{
59
$mode: 'AUTO' | 'FIXED';
60
}>`
61
- flex: 1 1 auto;
62
min-height: 0;
63
min-width: 0;
64
`;
@@ -139,7 +138,7 @@ export const TableContainer: React.FC<TableContainerProps> = ({
139
138
</>
140
) : (
141
/* Scrollbars enabled - use SimpleBar */
142
- <SimpleBarWrapper className="simplebar-wrapper" autoHide={false}>
+ <SimpleBarWrapper className="simplebar-wrapper" autoHide={true}>
143
{!stickyToolbar && toolbarPosition === 'above' && showToolbar && (
144
<DefaultToolbar>{toolbar}</DefaultToolbar>
145
)}
0 commit comments