Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: DVR - fix the default sorting
  • Loading branch information
perexg committed Sep 11, 2014
1 parent 5c7196b commit 5f5f554
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/webui/static/app/dvr.js
Expand Up @@ -155,7 +155,7 @@ tvheadend.dvr_upcoming = function(panel, index) {
'sched_status',
sort: {
field: 'start_real',
direction: 'DESC'
direction: 'ASC'
},
plugins: [actions],
lcol: [actions],
Expand Down Expand Up @@ -226,7 +226,7 @@ tvheadend.dvr_finished = function(panel, index) {
},
sort: {
field: 'start_real',
direction: 'DESC'
direction: 'ASC'
},
plugins: [actions],
lcol: [
Expand Down Expand Up @@ -274,7 +274,7 @@ tvheadend.dvr_failed = function(panel, index) {
'status,sched_status',
sort: {
field: 'start_real',
direction: 'DESC'
direction: 'ASC'
},
plugins: [actions],
lcol: [actions],
Expand Down Expand Up @@ -304,10 +304,6 @@ tvheadend.dvr_settings = function(panel, index) {
create: { }
},
del: true,
sort: {
field: 'name',
direction: 'ASC'
},
help: function() {
new tvheadend.help('DVR', 'config_dvr.html');
},
Expand Down

0 comments on commit 5f5f554

Please sign in to comment.