diff --git a/app/views/bubbles/_bubble.html.erb b/app/views/bubbles/_bubble.html.erb
index c757ae6a9..49061b584 100644
--- a/app/views/bubbles/_bubble.html.erb
+++ b/app/views/bubbles/_bubble.html.erb
@@ -1,26 +1,28 @@
-
+<% cache bubble do %>
+
-
- <%= turbo_frame_tag bubble, :edit do %>
- <%= link_to bubble.title, edit_bucket_bubble_path(bubble.bucket, bubble), class: "txt-undecorated" %>
+
+ <%= turbo_frame_tag bubble, :edit do %>
+ <%= link_to bubble.title, edit_bucket_bubble_path(bubble.bucket, bubble), class: "txt-undecorated" %>
+ <% end %>
+
+
+
+
+ <%= link_to bucket_bubble_path(bubble.bucket, bubble), class: "bubble__link" do %>
+ <%= bubble.title %>
<% end %>
-
-
-
- <%= link_to bucket_bubble_path(bubble.bucket, bubble), class: "bubble__link" do %>
-
<%= bubble.title %>
- <% end %>
-
- <%= render "bubbles/assignments", bubble: bubble %>
- <%= render "bubbles/boosts", bubble: bubble %>
- <%= render "bubbles/color", bubble: bubble %>
- <%= render "bubbles/date", bubble: bubble %>
- <%= render "bubbles/image", bubble: bubble %>
- <%= render "bubbles/tags", bubble: bubble %>
-
+ <%= render "bubbles/assignments", bubble: bubble %>
+ <%= render "bubbles/boosts", bubble: bubble %>
+ <%= render "bubbles/color", bubble: bubble %>
+ <%= render "bubbles/date", bubble: bubble %>
+ <%= render "bubbles/image", bubble: bubble %>
+ <%= render "bubbles/tags", bubble: bubble %>
+
+<% end %>