diff options
author | Jenkins <jenkins@jenkins.ninjawedding.org> | 2018-05-21 18:17:23 +0000 |
---|---|---|
committer | Jenkins <jenkins@jenkins.ninjawedding.org> | 2018-05-21 18:17:23 +0000 |
commit | f93806ea55956f911e24e52d8aa339573e37dd00 (patch) | |
tree | 9089057c1d9274aa6cdad9cd25c9c46e5f4e54ff /app/views/admin/reports | |
parent | cc230e5d5715a5feafb9c92aa387dd78e40d193e (diff) | |
parent | 5ea643b27908b14bd89ff068fc87e446e8cbcd32 (diff) |
Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master
Diffstat (limited to 'app/views/admin/reports')
-rw-r--r-- | app/views/admin/reports/show.html.haml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/admin/reports/show.html.haml b/app/views/admin/reports/show.html.haml index 38e47e6ca..ac2dec7ec 100644 --- a/app/views/admin/reports/show.html.haml +++ b/app/views/admin/reports/show.html.haml @@ -72,7 +72,11 @@ .speech-bubble .speech-bubble__bubble= simple_format(@report.comment.presence || t('admin.reports.comment.none')) .speech-bubble__owner - = admin_account_link_to @report.account + - if @report.account.local? + = admin_account_link_to @report.account + - else + = @report.account.domain + %br/ %time.formatted{ datetime: @report.created_at.iso8601 } - unless @report.statuses.empty? |