Change server.html to display errors if any are available (unused for now, but will be used shortly)
This commit is contained in:
parent
79b5562123
commit
5c097f16ff
1 changed files with 1 additions and 1 deletions
|
@ -1129,7 +1129,7 @@ td
|
|||
$tr.append( $('<td>').text(cstr.name) );
|
||||
|
||||
|
||||
$tr.append( $('<td>').html(cstr.online == 1 ? "<span class='green'>Running</span>" : "<span class='red'>Error</span>") );
|
||||
$tr.append( $('<td>').html(cstr.online == 1 ? "<span class='green'>Running</span>" : "<span class='red'>Error: "+cstr.online+"</span>") );
|
||||
|
||||
|
||||
var cviewers = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue