From fd951fb18a77b9b49d2c951f1a172fe4a5e92e96 Mon Sep 17 00:00:00 2001 From: stvn Date: Fri, 15 May 2020 12:05:08 -0700 Subject: [PATCH] Fix missing definition of unitId in InstructorToolbar.props --- src/courseware/course/InstructorToolbar.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/courseware/course/InstructorToolbar.jsx b/src/courseware/course/InstructorToolbar.jsx index ac10c698..c73462fb 100644 --- a/src/courseware/course/InstructorToolbar.jsx +++ b/src/courseware/course/InstructorToolbar.jsx @@ -39,10 +39,12 @@ function InstructorToolbar(props) { InstructorToolbar.propTypes = { activeUnitLmsWebUrl: PropTypes.string, + unitId: PropTypes.string, }; InstructorToolbar.defaultProps = { activeUnitLmsWebUrl: undefined, + unitId: undefined, }; const mapStateToProps = (state, props) => {