From 0837bd0495afe319bff1e9f633ded86572621419 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 31 Dec 2020 15:05:39 -0600 Subject: [PATCH] Admin Reports: display basic information --- app/soapbox/features/admin/reports.js | 3 ++- app/styles/components/admin.scss | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/soapbox/features/admin/reports.js b/app/soapbox/features/admin/reports.js index 85129c9ce..a277eae63 100644 --- a/app/soapbox/features/admin/reports.js +++ b/app/soapbox/features/admin/reports.js @@ -50,7 +50,8 @@ class Reports extends ImmutablePureComponent { {reports.map(report => (
- {report.get('id')} +
Report on @{report.getIn(['account', 'acct'])}
+
{report.get('content')} — @{report.getIn(['actor', 'acct'])}
))}
diff --git a/app/styles/components/admin.scss b/app/styles/components/admin.scss index b544d9f70..4c25eab4d 100644 --- a/app/styles/components/admin.scss +++ b/app/styles/components/admin.scss @@ -119,3 +119,7 @@ } } } + +.admin-report { + padding: 20px; +}