Skip to content

Commit

Permalink
Correct field titles
Browse files Browse the repository at this point in the history
  • Loading branch information
IanMayo committed Jan 2, 2024
1 parent 786da47 commit 01d4ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/audit/AuditList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export default function AuditList({
<TextField<Audit> source='resource' label='Resource' />
{!omit.includes('dataId') && (
<FunctionField<Audit>
label='Name '
label='Subject '
render={(record) => {
return (
record.dataId &&
Expand All @@ -267,7 +267,7 @@ export default function AuditList({
source value for different kinds of resource */}
{!omit.includes('subjectId') && (
<FunctionField<Audit>
label='Subject Item'
label='Object'
render={(record) => {
return (
record.subjectId &&
Expand Down

0 comments on commit 01d4ac2

Please sign in to comment.