diff --git a/frontend/app/components/Client/Audit/AuditList/AuditList.tsx b/frontend/app/components/Client/Audit/AuditList/AuditList.tsx index 45475923a..f795e0c1b 100644 --- a/frontend/app/components/Client/Audit/AuditList/AuditList.tsx +++ b/frontend/app/components/Client/Audit/AuditList/AuditList.tsx @@ -44,19 +44,18 @@ function AuditList(props: Props) { size="small" show={list.length === 0} > -
+
Name
Status
Time
{list.map((item, index) => ( -
- showModal(, { right: true })} - /> -
+ showModal(, { right: true })} + /> ))}
diff --git a/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx b/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx index 7d584bb06..2c9792d33 100644 --- a/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx +++ b/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx @@ -8,7 +8,7 @@ interface Props { function AuditListItem(props: Props) { const { audit, onShowDetails } = props; return ( -
+
{audit.username}
{audit.action}
{audit.createdAt && checkForRecent(audit.createdAt, 'LLL dd, yyyy, hh:mm a')}
diff --git a/frontend/app/components/Client/Audit/AuditView/AuditView.tsx b/frontend/app/components/Client/Audit/AuditView/AuditView.tsx index 23175b0d8..b93c26d08 100644 --- a/frontend/app/components/Client/Audit/AuditView/AuditView.tsx +++ b/frontend/app/components/Client/Audit/AuditView/AuditView.tsx @@ -23,7 +23,7 @@ function AuditView(props) { return useObserver(() => (
-
+
Audit Trail