mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-27 23:16:58 -04:00
NextAiring sorting is not as drunk anymore
This commit is contained in:
@@ -68,9 +68,11 @@ define(
|
||||
var key = this.state.sortKey;
|
||||
var order = this.state.order;
|
||||
|
||||
if (this.sorters && this.sorters[key] && this.mode === 'client') {
|
||||
if (this[key] && this.mode === 'client') {
|
||||
var sortValue = this[key];
|
||||
|
||||
this.setSorting(key, order, { sortValue: sortValue });
|
||||
|
||||
var comparator = this._makeComparator(key, order, sortValue);
|
||||
this.fullCollection.comparator = comparator;
|
||||
this.fullCollection.sort();
|
||||
|
||||
Reference in New Issue
Block a user