Skip to content
Snippets Groups Projects
Unverified Commit 40ef46db authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Display only domain of report account if remote under comment (#7574)

parent 46061dc0
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,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?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment