Skip to content

Commit

Permalink
chore: Add email to audit log (#4713)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Oct 11, 2024
1 parent 30456c1 commit febf35f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions frontend/web/components/AuditLog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type AuditLogType = {
}
}

const widths = [210, 210, 130]
const widths = [210, 310, 150]
const AuditLog: FC<AuditLogType> = (props) => {
const [page, setPage] = useState(1)
const { search, searchInput, setSearchInput } = useSearchThrottle(
Expand Down Expand Up @@ -121,7 +121,12 @@ const AuditLog: FC<AuditLogType> = (props) => {
className='table-column fs-small ln-sm'
style={{ width: widths[1] }}
>
{author?.first_name} {author?.last_name}
<div>
{author?.first_name} {author?.last_name}
</div>
<div className="list-item-subtitle">
{author?.email}
</div>
</div>
{environment?.name ? (
<Link
Expand Down

0 comments on commit febf35f

Please sign in to comment.