Skip to content

Commit

Permalink
Fix remove undelivered messages not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
dudanogueira committed May 12, 2024
1 parent c1ac775 commit 0ae47bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rocket_connect/templates/instance/server_detail_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ <h1 class="mt-4">
class="btn-close"
data-bs-dismiss="alert"
aria-label="Close"></button>
<strong>Delivered Messages to Delete:</strong> {{ delivered_messages_to_delete.count }}
<strong>Delivered Messages to Delete:</strong> {{ delivered_messages_to_delete.livechats.count }} Chats and {{ delivered_messages_to_delete.messages.count }} Messages
<small>(older then 10 days)</small>
{% if delivered_messages_to_delete.count %}
{% if delivered_messages_to_delete.livechats.count %}
<p class="mt-3">
<a name=""
class="btn btn-danger"
Expand Down

0 comments on commit 0ae47bd

Please sign in to comment.