about summary refs log tree commit diff
path: root/app/views/admin/reports/_report.html.haml
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-05-04 12:04:55 -0500
committerDavid Yip <yipdw@member.fsf.org>2018-05-04 12:04:55 -0500
commit2058922cc9dc4f622ecd64ebd102f29b0a43a177 (patch)
tree89c86321fd30a76e7369b31337fce761642364ee /app/views/admin/reports/_report.html.haml
parent1aa25ee0f52a0f9dd045897949be688de0e45bfb (diff)
parent54e80bec735bd0329fc4db08d36103d5e80f358e (diff)
Merge branch 'merge-upstream' into gs-master
Diffstat (limited to 'app/views/admin/reports/_report.html.haml')
-rw-r--r--app/views/admin/reports/_report.html.haml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/admin/reports/_report.html.haml b/app/views/admin/reports/_report.html.haml
index d6c881955..7b25c924b 100644
--- a/app/views/admin/reports/_report.html.haml
+++ b/app/views/admin/reports/_report.html.haml
@@ -4,7 +4,10 @@
   %td.target
     = admin_account_link_to report.target_account
   %td.reporter
-    = admin_account_link_to report.account
+    - if report.account.local?
+      = admin_account_link_to report.account
+    - else
+      = report.account.domain
   %td
     %div{ title: report.comment }
       = truncate(report.comment, length: 30, separator: ' ')