Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI DVR: Fix the additional rows in the column header menus, fixes …
…#2571
  • Loading branch information
perexg committed Jan 20, 2015
1 parent fc7d3d8 commit 3ddf768
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/webui/static/app/dvr.js
Expand Up @@ -370,7 +370,7 @@ tvheadend.dvr_failed = function(panel, index) {
direction: 'ASC'
},
plugins: [actions],
lcol: [
lcol: [
actions,
{
width: 40,
Expand Down
4 changes: 2 additions & 2 deletions src/webui/static/app/idnode.js
Expand Up @@ -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)
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 3ddf768

Please sign in to comment.