From: Mark Clarkstone Date: Wed, 4 Oct 2017 10:12:27 +0000 (+0100) Subject: webui: add additional time filters fixes #4649 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=772c8fe5fc5274eedd04ac5b41b6ab5d434fd943;p=thirdparty%2Ftvheadend.git webui: add additional time filters fixes #4649 --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 47a38e5bd..af3bb2293 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -68,9 +68,10 @@ tvheadend.DurationStore = new Ext.data.SimpleStore({ data: [['-1', _('(Clear filter)'),"",""], ['1',_('00:00:00 - 00:15:00'), 0, 900], ['2',_('00:15:00 - 00:30:00'), 900, 1800], - ['3',_('00:30:00 - 01:30:00'), 1800, 5400], - ['4',_('01:30:00 - 03:00:00'), 5400, 10800], - ['5',_('03:00:00 - No maximum'), 10800, 9999999]] + ['3',_('00:30:00 - 01:00:00'), 1800, 3600], + ['4',_('01:00:00 - 01:30:00'), 3600, 5400], + ['5',_('01:30:00 - 03:00:00'), 5400, 10800], + ['6',_('03:00:00 - No maximum'), 10800, 9999999]] }); // Function to convert numeric duration to corresponding label string