Fix /admin/accounts/ order parameter (#18996)

main
Jeong Arm 2 years ago committed by GitHub
parent 656ac99ef0
commit d415f1116b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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|

Loading…
Cancel
Save