diff --git a/client/coral-admin/src/components/AccountHistory.css b/client/coral-admin/src/components/AccountHistory.css
index 1d94ae82e..fbd1027d1 100644
--- a/client/coral-admin/src/components/AccountHistory.css
+++ b/client/coral-admin/src/components/AccountHistory.css
@@ -28,7 +28,7 @@
border-bottom: 1px solid #e0e0e0;
}
-.action, .system {
+.action {
color: black;
font-weight: bold;
}
diff --git a/client/coral-admin/src/components/AccountHistory.js b/client/coral-admin/src/components/AccountHistory.js
index e945e9c8e..a16b334ca 100644
--- a/client/coral-admin/src/components/AccountHistory.js
+++ b/client/coral-admin/src/components/AccountHistory.js
@@ -8,6 +8,7 @@ import orderBy from 'lodash/orderBy';
import has from 'lodash/has';
import moment from 'moment';
import t from 'coral-framework/services/i18n';
+import { Icon } from 'coral-ui';
const buildUserHistory = (userState = {}) => {
return orderBy(
@@ -56,10 +57,14 @@ const buildActionResponse = (typename, created_at, until, status) => {
}
};
-const hasUsername = user => has(user, 'username');
-
const getModerationValue = assignedBy =>
- hasUsername(assignedBy) ? assignedBy.username : t('account_history.system');
+ has(assignedBy, 'username') ? (
+ assignedBy.username
+ ) : (
+
+