]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI JS: DVR - fix the default sorting
authorJaroslav Kysela <perex@perex.cz>
Thu, 11 Sep 2014 07:26:59 +0000 (09:26 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 11 Sep 2014 07:26:59 +0000 (09:26 +0200)
src/webui/static/app/dvr.js

index fba84b6c3003bf29c28753813b6eac85917d6154..5196fa5271999cb6eac48b22eb920671ea46592d 100644 (file)
@@ -155,7 +155,7 @@ tvheadend.dvr_upcoming = function(panel, index) {
               'sched_status',
         sort: {
           field: 'start_real',
-          direction: 'DESC'
+          direction: 'ASC'
         },
         plugins: [actions],
         lcol: [actions],
@@ -226,7 +226,7 @@ tvheadend.dvr_finished = function(panel, index) {
         },
         sort: {
           field: 'start_real',
-          direction: 'DESC'
+          direction: 'ASC'
         },
         plugins: [actions],
         lcol: [
@@ -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],
@@ -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');
         },