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.
1 parent 9c25127 commit 9c45910Copy full SHA for 9c45910
app/code/Magento/Ui/view/base/web/js/form/element/ui-select.js
@@ -153,8 +153,8 @@ define([
153
showPath: true,
154
labelsDecoration: false,
155
disableLabel: false,
156
- filterRateLimit: 1000,
157
- filterRateLimitMethod: 'notifyWhenChangesStop',
+ filterRateLimit: 500,
+ filterRateLimitMethod: 'notifyAtFixedRate',
158
closeBtnLabel: $t('Done'),
159
optgroupTmpl: 'ui/grid/filters/elements/ui-select-optgroup',
160
quantityPlaceholder: $t('options'),
@@ -1167,7 +1167,7 @@ define([
1167
return;
1168
}
1169
1170
- if (searchKey !== this.lastSearchKey || currentPage === 1) {
+ if (currentPage === 1) {
1171
this.options([]);
1172
1173
this.processRequest(searchKey, currentPage);
0 commit comments