From 39c0be6722092d5536f6da9fc8507d034f8c8f2f Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 5 Feb 2025 11:20:53 -0600 Subject: [PATCH] Only count comments, exclude even summaries --- app/views/bubbles/list/_bubble.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/bubbles/list/_bubble.html.erb b/app/views/bubbles/list/_bubble.html.erb index 576bff8ab..bd49a7d11 100644 --- a/app/views/bubbles/list/_bubble.html.erb +++ b/app/views/bubbles/list/_bubble.html.erb @@ -12,8 +12,8 @@ <%= bubble.title %> <% end %> - <% if bubble.messages.many? %> - (<%= bubble.messages.count %>) + <% if bubble.messages.comments.many? %> + (<%= bubble.messages.comments.count %>) <% end %>