about summary refs log tree commit diff
path: root/app/views/admin/accounts/index.html.haml
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2022-08-18 06:07:30 +0900
committerGitHub <noreply@github.com>2022-08-17 22:07:30 +0100
commitd415f1116b4d992b7f33b6f0d2dcbf00934f61b1 (patch)
tree6b24c8d961e36dd42e151c90feef1dafa7c5edcb /app/views/admin/accounts/index.html.haml
parent656ac99ef04464b37d152b09f25facb8fd76c190 (diff)
Fix /admin/accounts/ order parameter (#18996)
Diffstat (limited to 'app/views/admin/accounts/index.html.haml')
-rw-r--r--app/views/admin/accounts/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml
index 7560fac7a..cb378f0ed 100644
--- a/app/views/admin/accounts/index.html.haml
+++ b/app/views/admin/accounts/index.html.haml
@@ -21,7 +21,7 @@
     .filter-subset.filter-subset--with-select
       %strong= t 'generic.order_by'
       .input.select
-        = select_tag :order, options_for_select([[t('relationships.most_recent'), nil], [t('relationships.last_active'), 'active']], params[:order])
+        = select_tag :order, options_for_select([[t('relationships.most_recent'), 'recent'], [t('relationships.last_active'), 'active']], params[:order])
 
   .fields-group
     - %i(username by_domain display_name email ip).each do |key|