From 45fc687ddd190a8fad794f1b763f14e715b8269b Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Wed, 2 Apr 2025 18:11:39 +0200 Subject: [PATCH] Only hide stages for completed cards We will miss the picker otherwise! --- app/views/bubbles/_card.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/bubbles/_card.html.erb b/app/views/bubbles/_card.html.erb index b7e2db052..69b378125 100644 --- a/app/views/bubbles/_card.html.erb +++ b/app/views/bubbles/_card.html.erb @@ -30,7 +30,7 @@ <% end %> - <%= turbo_frame_tag dom_id(bubble, :stage_picker), src: new_bucket_bubble_stage_picker_path(bubble.bucket, bubble) unless previewing_card? %> + <%= turbo_frame_tag dom_id(bubble, :stage_picker), src: new_bucket_bubble_stage_picker_path(bubble.bucket, bubble) unless (previewing_card? && bubble.popped?) %>