diff --git a/app/views/bubbles/_bubble.html.erb b/app/views/bubbles/_bubble.html.erb index 8d14747a5..490a8aaab 100644 --- a/app/views/bubbles/_bubble.html.erb +++ b/app/views/bubbles/_bubble.html.erb @@ -13,7 +13,9 @@ <% end %> - + <% bubble.tags.each do |tag| %> <%= link_to "##{tag.title}", bubbles_path(tag_id: tag), class: "bubble__bubble bubble__meta bubble__tag" %> @@ -28,7 +30,11 @@ <% end %> <%= tag.div class: "bubble__bubble bubble__meta bubble__boosts", - data: { controller: "animation toggle-class", animation_play_class: "boosting", toggle_class_toggle_class: "boosting", action: "animationend->toggle-class#toggle" } do %> - " src="<%= bubble_boosts_path(bubble) %>" /> + data: { + controller: "animation toggle-class", + animation_play_class: "boosting", + toggle_class_toggle_class: "boosting", + action: "animationend->toggle-class#toggle" } do %> + <%= turbo_frame_tag dom_id(bubble, :boosts), src: bubble_boosts_path(bubble) %> <% end %> diff --git a/app/views/bubbles/_form.html.erb b/app/views/bubbles/_form.html.erb index 1d56bd36a..a654ab87f 100644 --- a/app/views/bubbles/_form.html.erb +++ b/app/views/bubbles/_form.html.erb @@ -35,11 +35,10 @@
Attachment