diff --git a/src/components/moderation/SubmissionChangesDisplay.tsx b/src/components/moderation/SubmissionChangesDisplay.tsx index 95badbcb..0b87d727 100644 --- a/src/components/moderation/SubmissionChangesDisplay.tsx +++ b/src/components/moderation/SubmissionChangesDisplay.tsx @@ -249,9 +249,42 @@ export function SubmissionChangesDisplay({ )} ) : ( -
- Creating new {item.item_type} -
+ // Show all creation fields (no moderator edits) + <> + {changes.fieldChanges.length > 0 && ( +
+

Creation Data

+
+ {changes.fieldChanges.map((change, idx) => ( +
+ +
+ ))} +
+
+ )} + + {changes.imageChanges.length > 0 && ( +
+

Images

+
+ {changes.imageChanges.map((change, idx) => ( + + ))} +
+
+ )} + + {changes.hasLocationChange && ( +
+

Location

+ +
+ )} + )} )}