Skip to content

Commit 36640fd

Browse files
committed
MC-38787: Admin Product Grid Page indicator issue
1 parent f1f4a86 commit 36640fd

File tree

1 file changed

+4
-1
lines changed
  • app/code/Magento/Ui/view/base/web/js/grid/paging

1 file changed

+4
-1
lines changed

app/code/Magento/Ui/view/base/web/js/grid/paging/paging.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ define([
186186
* @returns {Paging} Chainable.
187187
*/
188188
goFirst: function () {
189-
if ((!_.isUndefined(this.filters) && _.keys(this.filters) > 1) || this.keywordUpdated) {
189+
if (
190+
(!_.isUndefined(this.filters) && _.keys(this.filters) > 1) ||
191+
(!_.isUndefined(this.keywordUpdated) && this.keywordUpdated)
192+
) {
190193
this.current = 1;
191194
}
192195

0 commit comments

Comments
 (0)