Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: Fix the idnode_tree (parameters missing)
  • Loading branch information
perexg committed Sep 8, 2014
1 parent 6a31c62 commit 1b063c7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/webui/static/app/idnode.js
Expand Up @@ -1702,15 +1702,17 @@ tvheadend.idnode_tree = function(panel, conf)
mpanel.remove(current);
current = null;
}
if (!n.isRoot)
current = mpanel.add(new tvheadend.idnode_editor(n.attributes, {
if (!n.isRoot) {
current = new tvheadend.idnode_editor(n.attributes, {
title: 'Parameters',
nowidth: true,
width: 550,
noautoWidth: true,
fixedHeight: true,
help: conf.help || null
}));
mpanel.doLayout();
});
mpanel.add(current);
mpanel.doLayout();
}
}
}
});
Expand Down

0 comments on commit 1b063c7

Please sign in to comment.