From 62b53d8740ad516f66ed0f9bc8900ac33d96144c Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Thu, 8 Sep 2022 23:30:21 +0200 Subject: [PATCH] Fix notifications pagination not working --- app/controllers/notifications_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/notifications_controller.rb b/app/controllers/notifications_controller.rb index 725ef72e..6f6f0e91 100644 --- a/app/controllers/notifications_controller.rb +++ b/app/controllers/notifications_controller.rb @@ -19,7 +19,7 @@ class NotificationsController < ApplicationController respond_to do |format| format.html - format.turbo_stream + format.turbo_stream { render layout: false, status: :see_other } end end