diff --git a/client/coral-admin/src/components/AccountHistory.js b/client/coral-admin/src/components/AccountHistory.js index ddb206e55..1c5c2f974 100644 --- a/client/coral-admin/src/components/AccountHistory.js +++ b/client/coral-admin/src/components/AccountHistory.js @@ -28,18 +28,24 @@ class AccountHistory extends React.Component { const userHistory = buildUserHistory(userState); return (
-
-
+
+
Date
Action
Moderation
{ userHistory.map((h, i) => ( -
-
{moment(new Date(h.created_at)).format('MMM DD, YYYY')}
-
{buildActionResponse(h.__typename, h.status)}
-
{h.assigned_by ? h.assigned_by.username : 'SYSTEM'}
+
+
+ {moment(new Date(h.created_at)).format('MMM DD, YYYY')} +
+
+ {buildActionResponse(h.__typename, h.status)} +
+
+ {h.assigned_by ? h.assigned_by.username : 'SYSTEM'} +
)) }