Fix location of queue consumer stats

This commit is contained in:
Marcial Rosales 2025-05-28 11:15:20 +02:00
parent 13f7438fa1
commit ce3c5b9551
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@
</table>
<% if(!disable_stats) { %>
<table class="facts facts-l">
<table class="facts facts-l" id="details-queue-stats-table">
<tr>
<th>State</th>
<td><%= fmt_object_state(queue) %></td>
@ -84,12 +84,12 @@
<% if(queue.consumers) { %>
<tr>
<th>Consumers</th>
<td><%= fmt_string(queue.consumers) %></td>
<td id="consumers"><%= fmt_string(queue.consumers) %></td>
</tr>
<% } else if(queue.hasOwnProperty('consumer_details')) { %>
<tr>
<th>Consumers</th>
<td><%= fmt_string(queue.consumer_details.length) %></td>
<td id="consumers"><%= fmt_string(queue.consumer_details.length) %></td>
</tr>
<% } %>
<% if (is_classic(queue)) { %>