Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: Fix null error in idnode_grid..
  • Loading branch information
perexg committed Sep 16, 2014
1 parent 800949a commit 6b71fb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/webui/static/app/idnode.js
Expand Up @@ -917,7 +917,8 @@ tvheadend.idnode_grid = function(panel, conf)
};

var update2 = function(o) {
grid.getView().refresh();
if (grid)
grid.getView().refresh();
};

function build(d)
Expand Down

0 comments on commit 6b71fb0

Please sign in to comment.