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.
2 parents ac051fb + b89ddac commit 1535e70Copy full SHA for 1535e70
app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows.js
@@ -316,9 +316,11 @@ define([
316
}, this);
317
}
318
319
- this.pagesChanged[this.currentPage()] =
320
- !compareArrays(this.defaultPagesState[this.currentPage()], this.arrayFilter(this.getChildItems()));
321
- this.changed(_.some(this.pagesChanged));
+ if (this.defaultPagesState[this.currentPage()]) {
+ this.pagesChanged[this.currentPage()] =
+ !compareArrays(this.defaultPagesState[this.currentPage()], this.arrayFilter(this.getChildItems()));
322
+ this.changed(_.some(this.pagesChanged));
323
+ }
324
},
325
326
/**
0 commit comments