From 942dd27e5c53d37fe2df422dbff4653b1f92e34e Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Thu, 27 Feb 2025 12:17:32 +0000 Subject: [PATCH] Sort buckets on notification settings --- app/controllers/notifications/settings_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/notifications/settings_controller.rb b/app/controllers/notifications/settings_controller.rb index b4dd981ec..ebffcbf58 100644 --- a/app/controllers/notifications/settings_controller.rb +++ b/app/controllers/notifications/settings_controller.rb @@ -1,7 +1,7 @@ module Notifications class SettingsController < ApplicationController def show - @buckets = Current.user.buckets.all + @buckets = Current.user.buckets.alphabetically end end end