diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2022-08-18 06:07:30 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 22:07:30 +0100 |
commit | d415f1116b4d992b7f33b6f0d2dcbf00934f61b1 (patch) | |
tree | 6b24c8d961e36dd42e151c90feef1dafa7c5edcb /app/views | |
parent | 656ac99ef04464b37d152b09f25facb8fd76c190 (diff) |
Fix /admin/accounts/ order parameter (#18996)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/accounts/index.html.haml | 2 |
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| |