@@ -35,7 +35,6 @@ import AlertMessage from '../generic/alert-message';
3535import getPageHeadTitle from '../generic/utils' ;
3636import { getCurrentItem , getProctoredExamsFlag } from './data/selectors' ;
3737import { COURSE_BLOCK_NAMES } from './constants' ;
38- import HeaderNavigations from './header-navigations/HeaderNavigations' ;
3938import OutlineSideBar from './outline-sidebar/OutlineSidebar' ;
4039import StatusBar from './status-bar/StatusBar' ;
4140import EnableHighlightsModal from './enable-highlights-modal/EnableHighlightsModal' ;
@@ -55,6 +54,7 @@ import {
5554import { useCourseOutline } from './hooks' ;
5655import messages from './messages' ;
5756import { getTagsExportFile } from './data/api' ;
57+ import CourseOutlineHeaderActionsSlot from '../plugin-slots/CourseOutlineHeaderActionsSlot' ;
5858
5959const CourseOutline = ( { courseId } ) => {
6060 const intl = useIntl ( ) ;
@@ -294,14 +294,15 @@ const CourseOutline = ({ courseId }) => {
294294 title = { intl . formatMessage ( messages . headingTitle ) }
295295 subtitle = { intl . formatMessage ( messages . headingSubtitle ) }
296296 headerActions = { (
297- < HeaderNavigations
297+ < CourseOutlineHeaderActionsSlot
298298 isReIndexShow = { isReIndexShow }
299299 isSectionsExpanded = { isSectionsExpanded }
300300 headerNavigationsActions = { headerNavigationsActions }
301301 isDisabledReindexButton = { isDisabledReindexButton }
302302 hasSections = { Boolean ( sectionsList . length ) }
303303 courseActions = { courseActions }
304304 errors = { errors }
305+ sections = { sections }
305306 />
306307 ) }
307308 />
0 commit comments