diff options
author | abcang <abcang1015@gmail.com> | 2017-07-09 01:35:08 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-08 18:35:08 +0200 |
commit | 794781d1219112482e4abbc0a98683a17d170e2b (patch) | |
tree | dba9ee95fbd8bbc215ab0ef8b2229d5452e5a302 /app/views/authorize_follows | |
parent | 91cacb1e8f9b2cb20a7cda2195b91d7d85c494e9 (diff) |
Change account link to admin account link on report page (#4119)
Diffstat (limited to 'app/views/authorize_follows')
-rw-r--r-- | app/views/authorize_follows/_card.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/authorize_follows/_card.html.haml b/app/views/authorize_follows/_card.html.haml index 13d9c7719..e81e292ba 100644 --- a/app/views/authorize_follows/_card.html.haml +++ b/app/views/authorize_follows/_card.html.haml @@ -4,7 +4,8 @@ = image_tag account.avatar.url(:original), alt: '', width: 48, height: 48, class: 'avatar' %span.display-name - = link_to TagManager.instance.url_for(account), class: 'detailed-status__display-name p-author h-card', target: '_blank', rel: 'noopener' do + - account_url = local_assigns[:admin] ? admin_account_path(account.id) : TagManager.instance.url_for(account) + = link_to account_url, class: 'detailed-status__display-name p-author h-card', target: '_blank', rel: 'noopener' do %strong.emojify= display_name(account) %span @#{account.acct} |