Fixed: Sorting Manual Import by relative path

Fixes #2313
Mark McDowall 7 years ago
parent e11e8ad272
commit 32309260b9
No known key found for this signature in database
GPG Key ID: D4CEFA9A718052E0

@ -36,6 +36,12 @@ var Collection = PageableCollection.extend({
},
sortMappings : {
relativePath : {
sortValue : function(model, attr, order) {
return model.get(attr).toLowerCase();
}
},
series : {
sortValue : function(model, attr, order) {
var series = model.get(attr);
@ -71,4 +77,4 @@ var Collection = PageableCollection.extend({
Collection = AsSortedCollection.call(Collection);
module.exports = Collection;
module.exports = Collection;

Loading…
Cancel
Save