Skip to content

Commit

Permalink
Shield student IDs from profs for anonymity
Browse files Browse the repository at this point in the history
  • Loading branch information
durham-abric committed Mar 29, 2018
1 parent 856eee8 commit 08d6934
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 08d6934

Please sign in to comment.