Admin Reports: display basic information
This commit is contained in:
parent
f7d11ff36e
commit
0837bd0495
|
@ -50,7 +50,8 @@ class Reports extends ImmutablePureComponent {
|
|||
<ScrollableList isLoading={isLoading} showLoading={showLoading} scrollKey='admin-reports' emptyMessage={intl.formatMessage(messages.emptyMessage)}>
|
||||
{reports.map(report => (
|
||||
<div className='admin-report' key={report.get('id')}>
|
||||
{report.get('id')}
|
||||
<div>Report on @{report.getIn(['account', 'acct'])}</div>
|
||||
<blockquote>{report.get('content')} — @{report.getIn(['actor', 'acct'])}</blockquote>
|
||||
</div>
|
||||
))}
|
||||
</ScrollableList>
|
||||
|
|
|
@ -119,3 +119,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.admin-report {
|
||||
padding: 20px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue