WEBUI JS: DVR - fix typo in the default sort setup

This commit is contained in:
Jaroslav Kysela 2014-09-08 22:21:46 +02:00
parent 0e6c737626
commit 679eae577e

View 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],