diff --git a/app/views/shared/_sidebar.html.erb b/app/views/shared/_sidebar.html.erb
index de8521450..f65fc181f 100644
--- a/app/views/shared/_sidebar.html.erb
+++ b/app/views/shared/_sidebar.html.erb
@@ -11,7 +11,7 @@
data-current-task="<%= current_task&.id %>">
- <% cache [current_user, current_team] do %>
+ <% cache [action_name, current_user, current_team] do %>
<%= render partial: 'shared/sidebar/projects' %>
<% end %>
diff --git a/app/views/shared/sidebar/_experiments.html.erb b/app/views/shared/sidebar/_experiments.html.erb
index e6090749c..d0c5eac91 100644
--- a/app/views/shared/sidebar/_experiments.html.erb
+++ b/app/views/shared/sidebar/_experiments.html.erb
@@ -1,7 +1,7 @@
<% if project.active_experiments.present? %>
<% project.active_experiments.each do |experiment| %>
- <% cache [current_user, experiment] do %>
+ <% cache [action_name, current_user, experiment] do %>
-
diff --git a/app/views/shared/sidebar/_projects.html.erb b/app/views/shared/sidebar/_projects.html.erb
index 4bdd17ac8..57b7853e8 100644
--- a/app/views/shared/sidebar/_projects.html.erb
+++ b/app/views/shared/sidebar/_projects.html.erb
@@ -1,6 +1,6 @@
<% @projects_tree.each do |project| %>
- <% cache [current_user, project] do %>
+ <% cache [action_name, current_user, project] do %>
-