From 679eae577ef8812ba805327ae652024b24572007 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 8 Sep 2014 22:21:46 +0200 Subject: [PATCH] WEBUI JS: DVR - fix typo in the default sort setup --- src/webui/static/app/dvr.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index a76b4745..78106901 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],