Skip to content
This repository has been archived by the owner on Aug 13, 2021. It is now read-only.

Commit

Permalink
fixed correct attributes
Browse files Browse the repository at this point in the history
Closes #90
  • Loading branch information
Tim Kretschmer authored and peterberkenbosch committed Sep 22, 2014
1 parent 24afcf7 commit de2fe23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/assets/javascripts/spree/backend/store_picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ $.fn.storeAutocomplete = function() {
}
},
formatResult: function(store) {
return store.store.name;
return store.name;
},
formatSelection: function(store) {
return store.store.name;
return store.name;
},
id: function(store) {
return store.store.id
return store.id
}
});
}
Expand Down

0 comments on commit de2fe23

Please sign in to comment.