Skip to content

Commit

Permalink
revert const to let change
Browse files Browse the repository at this point in the history
  • Loading branch information
drewvolz committed Apr 11, 2018
1 parent d83c329 commit 77dfbed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/web/modules/course-table/course-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ type PropTypes = {
}

export default function CourseList(props: PropTypes) {
let courseObjects = props.schedule.hasOwnProperty('courses')
const courseObjects = props.schedule.hasOwnProperty('courses')
? props.schedule.courses.map(
(course, i) =>
course.error ? (
Expand Down

0 comments on commit 77dfbed

Please sign in to comment.