Skip to content

Commit

Permalink
fix: use , for room separator
Browse files Browse the repository at this point in the history
  • Loading branch information
harshkhandeparkar committed Aug 25, 2024
1 parent de4d2c1 commit 2c0994d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function Table() {
<div className="tt-cell-content" title={timeslotInfo.occupied ? timeslotInfo.course_name : undefined}>
{
timeslotInfo.occupied && <>
<p className="room">{timeslotInfo.rooms.length > 0 ? timeslotInfo.rooms.join(",") : 'N/A'}</p>
<p className="room">{timeslotInfo.rooms.length > 0 ? timeslotInfo.rooms.join(", ") : 'N/A'}</p>
<p className="course-code">({timeslotInfo.course_code})</p>
</>
}
Expand Down

0 comments on commit 2c0994d

Please sign in to comment.