diff --git a/app/views/bubbles/index.html.erb b/app/views/bubbles/index.html.erb index 30f4c51f2..e3ca26972 100644 --- a/app/views/bubbles/index.html.erb +++ b/app/views/bubbles/index.html.erb @@ -19,7 +19,11 @@ <% end %>
- <%= render partial: "bubbles/bubble", collection: @bubbles.ordered_by_activity.limit(10) %> + <% if @bubbles.ordered_by_activity.any? %> + <%= render partial: "bubbles/bubble", collection: @bubbles.ordered_by_activity.limit(10) %> + <% else %> +

Nothing here.

+ <% end %>