diff --git a/front-end/src/components/student/StudentIssueOverlay/DesktopIssueDetails.js b/front-end/src/components/student/StudentIssueOverlay/DesktopIssueDetails.js index edc79ea..aa13fcd 100644 --- a/front-end/src/components/student/StudentIssueOverlay/DesktopIssueDetails.js +++ b/front-end/src/components/student/StudentIssueOverlay/DesktopIssueDetails.js @@ -210,7 +210,9 @@ const DesktopIssueDetails = ({ index }) => { {/* Map through the comments and display them starting with Update 2 */} - {issue.comments[0] != null && (issue.comments.map((update, index) => ( + {issue.comments[0] != null && + (issue.comments.map( + (update, index) => (
{/* Updates in Reverse */}

Update {issue.comments.length - index}