<%= link_to bucket_bubble_path(bubble.bucket, bubble), class: "bubble__title-link flex-item-grow max-width overflow-ellipsis" do %>
<%= bubble_title(bubble) %>
<% end %>
<% if bubble.messages.comments.many? %>
(<%= bubble.messages.comments.count %>)
<%= pluralize(bubble.messages.comments.count, "comment") %>
<% end %>
<% bubble.assignees.each do |assignee| %>
<%= link_to bubbles_path(@filter.as_params.merge(assignee_ids: [ assignee.id ])),
class: "btn avatar", style: "font-size: 0.4em;",
aria: { label: assignee.name } do %>
<%= avatar_image_tag assignee, loading: :lazy, aria: { hidden: true } %>
<% end %>
<% end %>