WEBUI DVR: Fix the additional rows in the column header menus, fixes #2571

This commit is contained in:
Jaroslav Kysela 2015-01-20 14:40:12 +01:00
parent fc7d3d8484
commit 3ddf768edf
2 changed files with 3 additions and 3 deletions

View file

@ -370,7 +370,7 @@ tvheadend.dvr_failed = function(panel, index) {
direction: 'ASC'
},
plugins: [actions],
lcol: [
lcol: [
actions,
{
width: 40,

View file

@ -1017,7 +1017,7 @@ tvheadend.idnode_grid = function(panel, conf)
var fields = [];
var buttons = [];
var abuttons = {};
var plugins = conf.plugins || [];
var plugins = conf.plugins.slice() || [];
/* Some copies */
if (conf.add && !conf.add.titleS && conf.titleS)
@ -1530,7 +1530,7 @@ tvheadend.idnode_form_grid = function(panel, conf)
var columns = [];
var buttons = [];
var abuttons = {};
var plugins = conf.plugins || [];
var plugins = conf.plugins.slice() || [];
var current = null;
var selectuuid = null;