mirror of https://github.com/Radarr/Radarr
Fixed: Sorting on path in series editor
This commit is contained in:
parent
dc80377a4c
commit
1d70c97983
|
@ -66,10 +66,11 @@ var Collection = PageableCollection.extend({
|
|||
},
|
||||
|
||||
sortMappings : {
|
||||
'title' : {
|
||||
title : {
|
||||
sortKey : 'sortTitle'
|
||||
},
|
||||
'nextAiring' : {
|
||||
|
||||
nextAiring : {
|
||||
sortValue : function(model, attr, order) {
|
||||
var nextAiring = model.get(attr);
|
||||
|
||||
|
@ -92,6 +93,14 @@ var Collection = PageableCollection.extend({
|
|||
|
||||
return percentOfEpisodes + episodeCount / 1000000;
|
||||
}
|
||||
},
|
||||
|
||||
path : {
|
||||
sortValue : function(model) {
|
||||
var path = model.get('path');
|
||||
|
||||
return path.toLowerCase();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue