We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b5897 commit df645f2Copy full SHA for df645f2
src/course-outline/hooks.jsx
@@ -187,7 +187,9 @@ const useCourseOutline = ({ courseId }) => {
187
dispatch(configureCourseSectionQuery(currentSection.id, ...arg));
188
break;
189
case COURSE_BLOCK_NAMES.sequential.id:
190
- dispatch(configureCourseSubsectionQuery(currentItem.id, currentSection.id, ...arg));
+ dispatch(configureCourseSubsectionQuery(currentItem.id, currentSection.id, ...arg)).then(() => {
191
+ dispatch(fetchCourseOutlineIndexQuery(courseId));
192
+ });
193
194
case COURSE_BLOCK_NAMES.vertical.id:
195
dispatch(configureCourseUnitQuery(currentItem.id, currentSection.id, ...arg));
0 commit comments