diff --git a/src/components/moderation/SubmissionChangesDisplay.tsx b/src/components/moderation/SubmissionChangesDisplay.tsx index e45b58b4..95badbcb 100644 --- a/src/components/moderation/SubmissionChangesDisplay.tsx +++ b/src/components/moderation/SubmissionChangesDisplay.tsx @@ -125,7 +125,7 @@ export function SubmissionChangesDisplay({ )} - {changes.action === 'edit' && changes.totalChanges > 0 && ( + {(changes.action === 'edit' || changes.action === 'create') && changes.totalChanges > 0 && (
{changes.fieldChanges.slice(0, 5).map((change, idx) => ( @@ -158,12 +158,6 @@ export function SubmissionChangesDisplay({
)} - {changes.action === 'create' && item.item_data?.description && ( -
- {item.item_data.description} -
- )} - {changes.action === 'delete' && (
Marked for deletion