diff --git a/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift b/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift index cf9fd203a..9865b1532 100644 --- a/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift +++ b/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift @@ -108,7 +108,11 @@ struct CommentBodyView: View { func compactScoreDisplay() -> some View { Group { // time - PublishedTimestampView(date: commentView.comment.published) + if let updated = commentView.comment.updated { + UpdatedTimestampView(date: updated, spacing: AppConstants.iconToTextSpacing) + } else { + PublishedTimestampView(date: commentView.comment.published) + } // votes if showCommentDownvotesSeparately {