From 49aa43667680f0a632d84c3f21783acf280ae6f2 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 31 Mar 2025 17:30:47 -0500 Subject: [PATCH] Don't filter these by stage either --- app/views/bubbles/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/bubbles/index.html.erb b/app/views/bubbles/index.html.erb index 5976eea10..4e0e4477c 100644 --- a/app/views/bubbles/index.html.erb +++ b/app/views/bubbles/index.html.erb @@ -115,7 +115,7 @@ Recently closed
- <% if (popped_bubbles = Filter.from_params(@filter.as_params.merge(indexed_by: "popped")).tap { |f| f.creator = Current.user }.bubbles).any? %> + <% if (popped_bubbles = Filter.from_params(@filter.as_params.except(:stage_ids).merge(indexed_by: "popped")).tap { |f| f.creator = Current.user }.bubbles).any? %> <%= render partial: "bubbles/card", collection: popped_bubbles, as: :bubble, cached: true %> <% else %>

Nothing here