diff --git a/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx b/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx index abf00a62..5561a49e 100644 --- a/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx +++ b/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx @@ -144,16 +144,25 @@ export default function ResumeCommentListItem({ {showReplies ? 'Hide replies' : 'Show replies'} - {showReplies && - comment.children.map((child) => { - return ( - - ); - })} + {showReplies && ( +
+
+
+
+ +
+ {comment.children.map((child) => { + return ( + + ); + })} +
+
+ )}
)} diff --git a/apps/portal/src/components/resumes/comments/comment/ResumeCommentVoteButtons.tsx b/apps/portal/src/components/resumes/comments/comment/ResumeCommentVoteButtons.tsx index ac633e92..e17e2546 100644 --- a/apps/portal/src/components/resumes/comments/comment/ResumeCommentVoteButtons.tsx +++ b/apps/portal/src/components/resumes/comments/comment/ResumeCommentVoteButtons.tsx @@ -97,7 +97,9 @@ export default function ResumeCommentVoteButtons({ /> -
{commentVotesQuery.data?.numVotes ?? 0}
+
+ {commentVotesQuery.data?.numVotes ?? 0} +