]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI JS: DVR - fix typo in the default sort setup
authorJaroslav Kysela <perex@perex.cz>
Mon, 8 Sep 2014 20:21:46 +0000 (22:21 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 8 Sep 2014 20:21:46 +0000 (22:21 +0200)
src/webui/static/app/dvr.js

index a76b474563c3bbb5ef7be55e1f61c1d88af1bf35..781069014515b6f6a8067db4561849dfdb579156 100644 (file)
@@ -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],