diff --git a/app/views/bubbles/index.html.erb b/app/views/bubbles/index.html.erb index cfdd9f554..de5d5ba68 100644 --- a/app/views/bubbles/index.html.erb +++ b/app/views/bubbles/index.html.erb @@ -33,17 +33,22 @@ <% end %> -
- <% if @bubbles.any? %> - <%= render "display_count_selector", display_count: @display_count, filter: @filter %> - <%= render partial: "bubbles/card", collection: @bubbles.limit(@display_count), as: :bubble, cached: true %> - <% else %> -

Nothing here.

- <% end %> -
- -
- -
+
+
+

+ Considering +

+ <%= render partial: "bubbles/card_mini", collection: @bubbles.where(stage: [@filter.buckets.first&.workflow&.stages&.first, nil]), as: :bubble, cached: true %> +
+
+

+ Doing +

+ <% if @bubbles.any? %> + <%#= render "display_count_selector", display_count: @display_count, filter: @filter %> + <%= render partial: "bubbles/card", collection: @bubbles.where.not(stage: @filter.buckets.first&.workflow&.stages&.first), as: :bubble, cached: true %> + <% else %> +

Nothing here.

+ <% end %> +
+