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 e3c3a29 commit f41ab80Copy full SHA for f41ab80
src/commons/modifiers.ts
@@ -364,8 +364,10 @@ export function generateModifiersStyle(options = {
364
style.positionStyle = extractPositionStyle(boundProps);
365
}
366
367
+ return style;
368
// clean empty objects and undefined
- return _.omitBy(style, value => _.isUndefined(value) || (_.isPlainObject(value) && _.isEmpty(value)));
369
+ // (!) This change is currently breaking UI layout for some reason - worth investigating
370
+ // return _.omitBy(style, value => _.isUndefined(value) || (_.isPlainObject(value) && _.isEmpty(value)));
371
372
373
export function getAlteredModifiersOptions(currentProps: any, nextProps: any) {
0 commit comments