Fix incorrect caching method used for notifications dropdown

This commit is contained in:
Karina Kwiatek 2023-05-07 16:54:35 +02:00
parent cd49558b81
commit 15405e41c5
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
%span.badge= notification_count
.dropdown-menu.dropdown-menu-end.notification-dropdown
%turbo-frame#notifications-dropdown-list
- Rails.cache.fetch current_user.notification_dropdown_cache_key do
- cache current_user.notification_dropdown_cache_key do
- notifications = Notification.for(current_user).where(new: true).includes([:target]).limit(4)
= render "navigation/dropdown/notifications", notifications:, size: "desktop"
%li.nav-item.d-none.d-sm-block{ data: { bs_toggle: 'tooltip', bs_placement: 'bottom' }, title: t('.ask_question') }