diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-24 00:20:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 00:20:23 +0100 |
commit | ce1dee85b58fb7ab41af7ea1d276853630ce59a0 (patch) | |
tree | 2e69928e6e0522043f661dbbb8c66dcae69923d0 /app/views/admin/accounts | |
parent | dee853f23c65988d505796d11ac71c0fd2f8053e (diff) |
Fix relationships page not showing results in admin UI (#12934)
Follow-up to #12927
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r-- | app/views/admin/accounts/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml index f191d8f25..a83f77134 100644 --- a/app/views/admin/accounts/show.html.haml +++ b/app/views/admin/accounts/show.html.haml @@ -41,7 +41,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') do + = link_to admin_account_relationships_path(@account.id, location: 'local', relationship: 'followed_by') do .dashboard__counters__num= number_with_delimiter @account.local_followers_count .dashboard__counters__label= t 'admin.accounts.followers' %div |