-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [AXIMST-424] Course unit - Fixed network connection behavior (#138)
* fix: [AXIMST-424] fixed network connetcion behavior * fix: added placeholder for unsuccessful loading for the page * refactor: code refactoring
- Loading branch information
1 parent
cdd3118
commit 713ca4b
Showing
3 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
export const getCourseUnitData = (state) => state.courseUnit.unit; | ||
export const getCourseUnit = (state) => state.courseUnit; | ||
export const getSavingStatus = (state) => state.courseUnit.savingStatus; | ||
export const getLoadingStatus = (state) => state.courseUnit.loadingStatus; | ||
export const getSequenceStatus = (state) => state.courseUnit.sequenceStatus; | ||
export const getSequenceIds = (state) => state.courseUnit.courseSectionVertical.courseSequenceIds; | ||
export const getCourseSectionVertical = (state) => state.courseUnit.courseSectionVertical; | ||
export const getCourseId = state => state.courseDetail.courseId; | ||
export const getSequenceId = state => state.courseUnit.sequenceId; | ||
export const getCourseVerticalChildren = state => state.courseUnit.courseVerticalChildren; | ||
export const getCourseId = (state) => state.courseDetail.courseId; | ||
export const getSequenceId = (state) => state.courseUnit.sequenceId; | ||
export const getCourseVerticalChildren = (state) => state.courseUnit.courseVerticalChildren; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters