Skip to content

Commit

Permalink
chore: updated filtering condition
Browse files Browse the repository at this point in the history
  • Loading branch information
AfaqShuaib09 committed Oct 30, 2024
1 parent 15147ce commit c5033d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/EditCoursePage/CollapsibleCourseRun.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class CollapsibleCourseRun extends React.Component {

if (courseInReview !== isCourseRunInReview) {
setTimeout(() => {

Check failure on line 283 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (18)

Expected indentation of 6 spaces but found 8

Check failure on line 283 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (20)

Expected indentation of 6 spaces but found 8
this.setState({ isCourseRunInReview: courseInReview });
this.setState({ isCourseRunInReview: IN_REVIEW_STATUS.includes(courseRun.status) });

Check failure on line 284 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (18)

Expected indentation of 8 spaces but found 12

Check failure on line 284 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (20)

Expected indentation of 8 spaces but found 12
}, 500);

Check failure on line 285 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (18)

Expected indentation of 6 spaces but found 8

Check failure on line 285 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (20)

Expected indentation of 6 spaces but found 8
}

Expand Down

0 comments on commit c5033d4

Please sign in to comment.