Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI: debug tab - fix trace subsystems disable call
  • Loading branch information
perexg committed Oct 1, 2015
1 parent da8eb03 commit 5aed7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/tvhlog.js
Expand Up @@ -4,7 +4,7 @@ tvheadend.tvhlog = function(panel, index) {
var f = form.getForm();
var trace = f.findField('trace');
var tracesubs = f.findField('tracesubs');
tracesubs.setDisabled(!trace.getValue() || tracesubs.disabled);
tracesubs.setDisabled(!trace.getValue() || trace.disabled);
}

tvheadend.idnode_simple(panel, {
Expand Down

0 comments on commit 5aed7f1

Please sign in to comment.