From 5f5f554e40fcdbaa52ce2b65e68cfb02d543b7e8 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 11 Sep 2014 09:26:59 +0200 Subject: [PATCH] WEBUI JS: DVR - fix the default sorting --- src/webui/static/app/dvr.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index fba84b6c..5196fa52 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -155,7 +155,7 @@ tvheadend.dvr_upcoming = function(panel, index) { 'sched_status', sort: { field: 'start_real', - direction: 'DESC' + direction: 'ASC' }, plugins: [actions], lcol: [actions], @@ -226,7 +226,7 @@ tvheadend.dvr_finished = function(panel, index) { }, sort: { field: 'start_real', - direction: 'DESC' + direction: 'ASC' }, plugins: [actions], lcol: [ @@ -274,7 +274,7 @@ tvheadend.dvr_failed = function(panel, index) { 'status,sched_status', sort: { field: 'start_real', - direction: 'DESC' + direction: 'ASC' }, plugins: [actions], lcol: [actions], @@ -304,10 +304,6 @@ tvheadend.dvr_settings = function(panel, index) { create: { } }, del: true, - sort: { - field: 'name', - direction: 'ASC' - }, help: function() { new tvheadend.help('DVR', 'config_dvr.html'); },