File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
client/packages/lowcoder/src/comps/comps/gridLayoutComp Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ export const CanvasView = React.memo((props: ContainerBaseProps) => {
327
327
bgColor = { bgColor }
328
328
radius = "0px"
329
329
emptyRows = { defaultRowCount }
330
- minHeight = { defaultMinHeight }
330
+ minHeight = { ! isModule ? defaultMinHeight : undefined }
331
331
extraHeight = { defaultRowCount === DEFAULT_ROW_COUNT ? rootContainerExtraHeight : undefined }
332
332
/>
333
333
</ Profiler >
@@ -368,7 +368,7 @@ export const CanvasView = React.memo((props: ContainerBaseProps) => {
368
368
bgColor = { bgColor }
369
369
positionParams = { positionParams }
370
370
emptyRows = { defaultRowCount }
371
- minHeight = { defaultMinHeight }
371
+ minHeight = { ! isModule ? defaultMinHeight : undefined }
372
372
extraHeight = { defaultRowCount === DEFAULT_ROW_COUNT ? rootContainerExtraHeight : undefined }
373
373
/>
374
374
</ Profiler >
You can’t perform that action at this time.
0 commit comments