We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e6df96 + 045141c commit aa9e0e3Copy full SHA for aa9e0e3
client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx
@@ -160,7 +160,7 @@ const BackgroundWrapper = styled.div<{
160
border-style: ${(props) => props.$style.borderStyle} !important;
161
border-width: ${(props) => `${props.$style.borderWidth} !important`};
162
border-color: ${(props) => `${props.$style.border} !important`};
163
- height: calc(100% - ${(props) => getVerticalMargin(props.$style.margin.split(' '))});
+ height: calc(100% - ${(props) => props.$style.margin && getVerticalMargin(props.$style.margin.split(' '))});
164
overflow: hidden;
165
166
> div.table-scrollbar-wrapper {
0 commit comments