Skip to content
This repository has been archived by the owner on Dec 8, 2019. It is now read-only.

Commit

Permalink
Resolve #3
Browse files Browse the repository at this point in the history
  • Loading branch information
devfacet committed Mar 6, 2017
1 parent 5741a23 commit 65ed704
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ var app = function app() {
// Columns
content += '<td>' + val.cid + '</td>';
content += '<td>' + val.ip + ':' + val.port + '</td>';
content += '<td>' + val.lang + ' / ' + val.version + '</td>';
content += '<td>' + val.lang + '/' + val.version + (val.name ? ' (' + val.name + ')' : '') + '</td>';
content += '<td>' + val.pending_bytes + '</td>';
content += '<td>' + val.in_msgs + ' / ' + val.out_msgs + '</td>';
content += '<td>' + val.in_bytes + ' / ' + val.out_bytes + '</td>';
content += '<td>' + val.in_msgs + '/' + val.out_msgs + '</td>';
content += '<td>' + val.in_bytes + '/' + val.out_bytes + '</td>';
content += '<td>' + val.subscriptions + '</td>';
content += '<td>' + (val.subscriptions_list ? val.subscriptions_list.join(', ') : '') + '</td>';

Expand Down

0 comments on commit 65ed704

Please sign in to comment.