From fb5254d13b99f93d1de365e563bda537fb5d9c2f Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Tue, 8 Oct 2024 13:39:14 -0400 Subject: [PATCH] Scope to just users on the bucket --- app/views/bubbles/_filters.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/bubbles/_filters.html.erb b/app/views/bubbles/_filters.html.erb index 4e401a04a..20a2254b5 100644 --- a/app/views/bubbles/_filters.html.erb +++ b/app/views/bubbles/_filters.html.erb @@ -70,7 +70,7 @@ - <% Current.account.users.active.order(:name).each do |user| %> + <% bucket.users.active.order(:name).each do |user| %>
  • <%= link_to user.name, bucket_bubbles_path(bucket, bubble_filter_params.merge(assignee_id: user.id)) %>
  • <% end %>