diff --git a/js/components/report/feedback-panel-for-student.js b/js/components/report/feedback-panel-for-student.js index fc506082..b17bf679 100644 --- a/js/components/report/feedback-panel-for-student.js +++ b/js/components/report/feedback-panel-for-student.js @@ -35,6 +35,11 @@ export default class FeedbackPanelForStudent extends PureComponent { render() { const { textFeedback, score, rubric, rubricFeedback, hasBeenReviewed } = this.props; + + if (rubric && rubric.hideRubricFromStudentsInStudentReport) { + return null; + } + const hasFeedback = textFeedback || score || rubricFeedback; const showFeedback = (hasFeedback && hasBeenReviewed);