Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: DVR - fix typo in the default sort setup
  • Loading branch information
perexg committed Sep 8, 2014
1 parent 0e6c737 commit 679eae5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/webui/static/app/dvr.js
Expand Up @@ -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],
Expand Down Expand Up @@ -225,7 +225,7 @@ tvheadend.dvr_finished = function(panel, index) {
}
},
sort: {
field: 'start',
field: 'start_real',
direction: 'DESC'
},
plugins: [actions],
Expand Down Expand Up @@ -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],
Expand Down

0 comments on commit 679eae5

Please sign in to comment.