Skip to content

Commit 75960ce

Browse files
15210-Fixed product tier pricing pagination
- Fix prevPage and nextPage method. Calling clear method was added to changePage method.
1 parent ec3eb1a commit 75960ce

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Diff for: app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows.js

-2
Original file line numberDiff line numberDiff line change
@@ -764,15 +764,13 @@ define([
764764
* Change page to next
765765
*/
766766
nextPage: function () {
767-
this.clear();
768767
this.currentPage(this.currentPage() + 1);
769768
},
770769

771770
/**
772771
* Change page to previous
773772
*/
774773
previousPage: function () {
775-
this.clear();
776774
this.currentPage(this.currentPage() - 1);
777775
},
778776

0 commit comments

Comments
 (0)