Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
quick fix for the previous patch
  • Loading branch information
perexg committed Jan 20, 2015
1 parent 3ddf768 commit e565e7c
Showing 1 changed file with 2 additions and 2 deletions.
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.slice() || [];
var plugins = conf.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.slice() || [];
var plugins = conf.plugins ? conf.plugins.slice() : [];
var current = null;
var selectuuid = null;

Expand Down

0 comments on commit e565e7c

Please sign in to comment.