From: Jeong Arm Date: Wed, 17 Aug 2022 21:07:30 +0000 (+0900) Subject: Fix /admin/accounts/ order parameter (#18996) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=f618e2fee832060b9915c9018289416da741ca49;p=mastodon.git Fix /admin/accounts/ order parameter (#18996) --- diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml index 84040e480..e0879fcb6 100644 --- a/app/views/admin/accounts/index.html.haml +++ b/app/views/admin/accounts/index.html.haml @@ -18,7 +18,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|