File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
client/packages/lowcoder/src/comps/generators Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,6 @@ function UIView(props: {
248248
249249 let defaultChildren = comp . children ;
250250 const isNotContainer = defaultChildren . hasOwnProperty ( 'style' ) ;
251- const restrictPaddingOnRotation = defaultChildren . hasOwnProperty ( 'restrictPaddingOnRotation' ) ;
252251 let rotationVal = null
253252 let boxShadowVal = null ;
254253 if ( isNotContainer ) {
@@ -266,7 +265,7 @@ function UIView(props: {
266265 margin : '0px' ,
267266 // padding:'0px',
268267 padding : (
269- rotationVal === null || rotationVal === undefined || restrictPaddingOnRotation
268+ rotationVal === null || rotationVal === undefined
270269 ? '0px'
271270 : (
272271 boxShadowVal === null || boxShadowVal === undefined
You can’t perform that action at this time.
0 commit comments