@@ -187,7 +187,7 @@ export function PageLayout(props: LayoutProps & { siderCollapsed: boolean; setSi
187
187
</ BackgroundColorContext . Provider >
188
188
</ >
189
189
) }
190
- < Layout style = { { padding : "0px" } } >
190
+ < Layout style = { { padding : "0px" } } >
191
191
{ showHeader && (
192
192
< >
193
193
< BackgroundColorContext . Provider value = { style . background } >
@@ -236,7 +236,7 @@ export function PageLayout(props: LayoutProps & { siderCollapsed: boolean; setSi
236
236
style = { { padding : siderStyle . containerSiderPadding } } />
237
237
</ ScrollBar >
238
238
</ Sider >
239
- </ BackgroundColorContext . Provider >
239
+ </ BackgroundColorContext . Provider >
240
240
) }
241
241
< Content style = { { padding : '0px' , margin : '0px' , backgroundColor : bodyStyle ?. background || 'transparent' } } >
242
242
< ScrollBar style = { { height : container . autoHeight ? "auto" : "100%" , margin : "0px" , padding : "0px" } } hideScrollbar = { ! container . contentScrollbars } >
@@ -277,8 +277,8 @@ export function PageLayout(props: LayoutProps & { siderCollapsed: boolean; setSi
277
277
collapsedWidth = { container . siderCollapsedWidth }
278
278
reverseArrow = { true }
279
279
collapsed = { siderCollapsed } onCollapse = { ( value ) => setSiderCollapsed ( value ) }
280
- >
281
- < ScrollBar style = { { height : container . autoHeight ? "auto" : "100%" , margin : "0px" , padding : "0px" } } hideScrollbar = { ! container . siderScrollbars } >
280
+ >
281
+ < ScrollBar style = { { height : container . autoHeight ? "auto" : "100%" , margin : "0px" , padding : "0px" } } hideScrollbar = { ! container . siderScrollbars } >
282
282
< SiderInnerGrid
283
283
{ ...otherSiderProps }
284
284
items = { gridItemCompToGridItems ( siderItems ) }
@@ -304,17 +304,17 @@ export function PageLayout(props: LayoutProps & { siderCollapsed: boolean; setSi
304
304
< ScrollBar style = { { height : container . autoHeight ? "auto" : "100%" , margin : "0px" , padding : "0px" } } hideScrollbar = { ! container . contentScrollbars } >
305
305
{ container . showApp && container . contentApp != "" ? (
306
306
< BackgroundColorContext . Provider value = { bodyStyle ?. background } >
307
- < AppViewContainer >
308
- < LowcoderAppView
309
- ref = { appRef }
310
- appId = { container . contentApp }
311
- baseUrl = { container . baseUrl }
312
- />
313
- </ AppViewContainer >
314
- </ BackgroundColorContext . Provider >
315
- ) : (
316
- < BodyInnerGrid
317
- $showBorder = { showHeader }
307
+ < AppViewContainer >
308
+ < LowcoderAppView
309
+ ref = { appRef }
310
+ appId = { container . contentApp }
311
+ baseUrl = { container . baseUrl }
312
+ />
313
+ </ AppViewContainer >
314
+ </ BackgroundColorContext . Provider >
315
+ ) : (
316
+ < BodyInnerGrid
317
+ $showBorder = { showHeader }
318
318
{ ...otherBodyProps }
319
319
items = { gridItemCompToGridItems ( bodyItems ) }
320
320
autoHeight = { container . autoHeight }
0 commit comments