Skip to content

Commit ce3c5b9

Browse files
Fix location of queue consumer stats
1 parent 13f7438 commit ce3c5b9

File tree

1 file changed

+3
-3
lines changed
  • deps/rabbitmq_management/priv/www/js/tmpl

1 file changed

+3
-3
lines changed

deps/rabbitmq_management/priv/www/js/tmpl/queue.ejs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,20 @@
7676
</table>
7777

7878
<% if(!disable_stats) { %>
79-
<table class="facts facts-l">
79+
<table class="facts facts-l" id="details-queue-stats-table">
8080
<tr>
8181
<th>State</th>
8282
<td><%= fmt_object_state(queue) %></td>
8383
</tr>
8484
<% if(queue.consumers) { %>
8585
<tr>
8686
<th>Consumers</th>
87-
<td><%= fmt_string(queue.consumers) %></td>
87+
<td id="consumers"><%= fmt_string(queue.consumers) %></td>
8888
</tr>
8989
<% } else if(queue.hasOwnProperty('consumer_details')) { %>
9090
<tr>
9191
<th>Consumers</th>
92-
<td><%= fmt_string(queue.consumer_details.length) %></td>
92+
<td id="consumers"><%= fmt_string(queue.consumer_details.length) %></td>
9393
</tr>
9494
<% } %>
9595
<% if (is_classic(queue)) { %>

0 commit comments

Comments
 (0)