Skip to content

Commit

Permalink
Merge pull request #26 from olivertsesk/Durham
Browse files Browse the repository at this point in the history
Shield student IDs from profs for anonymity
  • Loading branch information
durham-abric authored Mar 29, 2018
2 parents 856eee8 + 08d6934 commit c6d7340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bodies/components/profListing.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ClassListing extends Component {
return(
<div className="commentWrapper">
<Col lg={2} md={2} sm={2} xs={2} className="center commentCol">
<p className="commentAuthor">{item.val().studentID ? item.val().studentID : "ID Not Recorded"}</p>
<p className="commentAuthor">{item.val().tag ? item.val().tag : ""}</p>
</Col>
<Col lg={7} md={7} sm={7} xs={7} className="center commentCol">
<p className="comment">{item.val().comment}</p>
Expand Down

0 comments on commit c6d7340

Please sign in to comment.