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 baa197c commit 084813bCopy full SHA for 084813b
app/code/Magento/PageBuilder/view/adminhtml/web/js/form/element/validator-rules-mixin.js
@@ -234,7 +234,7 @@ define([
234
var allFilled;
235
236
// Validation only for margins and paddings
237
- if (typeof value === 'object' && !!(value.padding || value.margin)) {
+ if (value !== null && typeof value === 'object' && !!(value.padding || value.margin)) {
238
allFilled = true;
239
240
_.flatten(_.map(value, _.values)).forEach(function (val) {
0 commit comments