From: Jaroslav Kysela Date: Mon, 8 Sep 2014 20:21:46 +0000 (+0200) Subject: WEBUI JS: DVR - fix typo in the default sort setup X-Git-Tag: v4.1~1422 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=679eae577ef8812ba805327ae652024b24572007;p=thirdparty%2Ftvheadend.git WEBUI JS: DVR - fix typo in the default sort setup --- diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index a76b47456..781069014 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -154,7 +154,7 @@ tvheadend.dvr_upcoming = function(panel, index) { 'duration,channelname,creator,config_name,' + 'sched_status', sort: { - field: 'start', + field: 'start_real', direction: 'DESC' }, plugins: [actions], @@ -225,7 +225,7 @@ tvheadend.dvr_finished = function(panel, index) { } }, sort: { - field: 'start', + field: 'start_real', direction: 'DESC' }, plugins: [actions], @@ -273,7 +273,7 @@ tvheadend.dvr_failed = function(panel, index) { 'duration,channelname,creator,' + 'status,sched_status', sort: { - field: 'start', + field: 'start_real', direction: 'DESC' }, plugins: [actions],