Skip to content

Commit 45f9f30

Browse files
committed
Merge pull request #7607 in SW/shopware from ntr/5.5/fix-es-backend-search to 5.5
* commit '72cf70ce7db041384668387431e88c4027de434c': NTR - Fix backend order es search
2 parents 4a7bdd0 + 72cf70c commit 45f9f30

File tree

1 file changed

+1
-1
lines changed
  • themes/Backend/ExtJs/backend/order/view/list

1 file changed

+1
-1
lines changed

themes/Backend/ExtJs/backend/order/view/list/filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,6 @@ Ext.define('Shopware.apps.Order.view.list.Filter', {
364364
var selectionFactory = Ext.create('Shopware.attribute.SelectionFactory', {});
365365
var store = selectionFactory.createEntitySearchStore("Shopware\\Models\\Country\\Country");
366366
store.pageSize = 999;
367-
store.remoteSort = true;
368367

369368
store.sort([{
370369
property: 'active',
@@ -373,6 +372,7 @@ Ext.define('Shopware.apps.Order.view.list.Filter', {
373372
property: 'name',
374373
direction: 'ASC'
375374
}]);
375+
store.remoteSort = true;
376376

377377
return store;
378378
},

0 commit comments

Comments
 (0)