From a919a352d906fe4bb34165c0e35e18d01a91dda0 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 3 Oct 2024 16:29:37 -0500 Subject: [PATCH] Bare blank slate --- app/views/bubbles/index.html.erb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 %>