Skip to content

Commit

Permalink
Merge pull request #7607 in SW/shopware from ntr/5.5/fix-es-backend-s…
Browse files Browse the repository at this point in the history
…earch to 5.5

* commit '72cf70ce7db041384668387431e88c4027de434c':
  NTR - Fix backend order es search
soebbing committed Apr 1, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 4a7bdd0 + 72cf70c commit 45f9f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/Backend/ExtJs/backend/order/view/list/filter.js
Original file line number Diff line number Diff line change
@@ -364,7 +364,6 @@ Ext.define('Shopware.apps.Order.view.list.Filter', {
var selectionFactory = Ext.create('Shopware.attribute.SelectionFactory', {});
var store = selectionFactory.createEntitySearchStore("Shopware\\Models\\Country\\Country");
store.pageSize = 999;
store.remoteSort = true;

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

return store;
},

0 comments on commit 45f9f30

Please sign in to comment.