Skip to content

Commit 88b3e27

Browse files
MAGETWO-91633: Grouped Products: Associated Products Can't Be Sorted Between Pages
- Fix static tests
1 parent 15668ac commit 88b3e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product-grid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ define([
193193
* @return {Number}
194194
*/
195195
getCalculatedPosition: function (data) {
196-
return (~~this.currentPage() - 1) * this.pageSize + this.elems().pluck("name").indexOf(data.name);
196+
return (~~this.currentPage() - 1) * this.pageSize + this.elems().pluck('name').indexOf(data.name);
197197
},
198198

199199
/**

0 commit comments

Comments
 (0)