Browse Source

Change followed_by link to location=all if account is local on /admin/accounts/:id page (#23467)

closed-social-glitch-2
Jeong Arm 1 year ago
committed by GitHub
parent
commit
5f56818f9e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/views/admin/accounts/show.html.haml

+ 1
- 1
app/views/admin/accounts/show.html.haml View File

@ -37,7 +37,7 @@
.dashboard__counters__num= number_to_human_size @account.media_attachments.sum('file_file_size')
.dashboard__counters__label= t 'admin.accounts.media_attachments'
%div
= link_to admin_account_relationships_path(@account.id, location: 'local', relationship: 'followed_by') do
= link_to admin_account_relationships_path(@account.id, location: @account.local? ? nil : 'local', relationship: 'followed_by') do
.dashboard__counters__num= number_with_delimiter @account.local_followers_count
.dashboard__counters__label= t 'admin.accounts.followers'
%div

Loading…
Cancel
Save