Skip to content

Commit 9c45910

Browse files
author
joweecaquicla
committed
magento/adobe-stock-integration#1618: Duplicated items in used in entities filters - applied requested change
1 parent 9c25127 commit 9c45910

File tree

1 file changed

+3
-3
lines changed
  • app/code/Magento/Ui/view/base/web/js/form/element

1 file changed

+3
-3
lines changed

app/code/Magento/Ui/view/base/web/js/form/element/ui-select.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ define([
153153
showPath: true,
154154
labelsDecoration: false,
155155
disableLabel: false,
156-
filterRateLimit: 1000,
157-
filterRateLimitMethod: 'notifyWhenChangesStop',
156+
filterRateLimit: 500,
157+
filterRateLimitMethod: 'notifyAtFixedRate',
158158
closeBtnLabel: $t('Done'),
159159
optgroupTmpl: 'ui/grid/filters/elements/ui-select-optgroup',
160160
quantityPlaceholder: $t('options'),
@@ -1167,7 +1167,7 @@ define([
11671167
return;
11681168
}
11691169

1170-
if (searchKey !== this.lastSearchKey || currentPage === 1) {
1170+
if (currentPage === 1) {
11711171
this.options([]);
11721172
}
11731173
this.processRequest(searchKey, currentPage);

0 commit comments

Comments
 (0)