From 0258f09dd86e397e69359eeb8a6a6babcb20ea19 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Fri, 14 Feb 2025 11:56:05 -0600 Subject: [PATCH] When you click a tag, include the bucket scope --- app/views/bubbles/_tags.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/bubbles/_tags.html.erb b/app/views/bubbles/_tags.html.erb index fc434dbb8..65027e543 100644 --- a/app/views/bubbles/_tags.html.erb +++ b/app/views/bubbles/_tags.html.erb @@ -1,5 +1,5 @@ <% bubble.tags.each do |tag| %> - <%= link_to bubbles_path(tag_ids: [ tag.id ]), + <%= link_to bubbles_path(bucket_ids: [ bubble.bucket ], tag_ids: [ tag.id ]), class: "bubble__tag btn btn--plain fill-transparent min-width", style: "color: #{bubble.color}", data: { turbo_frame: "_top" } do %> <%= tag.hashtag %> <% end %>