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 f1effb5 commit 98ac923Copy full SHA for 98ac923
client/packages/lowcoder/src/comps/generators/uiCompBuilder.tsx
@@ -287,7 +287,11 @@ function UIView(props: {
287
} else {
288
return '0px'; // Both rotation and box-shadow are empty or restricted
289
}
290
- } else if (rotationVal !== '' && rotationVal !== '0deg') {
+ }else if (
291
+ rotationVal === null ||
292
+ rotationVal === undefined ||
293
+ rotationVal === '0px'
294
+ ){return '0px'} else if (rotationVal !== '' && rotationVal !== '0deg') {
295
// Rotation applied
296
if (
297
boxShadowVal === null ||
0 commit comments