frontend-app-learning
frontend-app-learning copied to clipboard
Front-end for the Open edX course experience, implemented using React and Paragon.
Results
162
frontend-app-learning issues
Sort by
recently updated
recently updated
newest added
Update the code and tests to get rid of the Internal export pattern. Example: Before: ``` export default connect(editableFieldSelector, { onEdit: openForm, onCancel: closeForm, })(EditableField); ``` After: ``` const EditableField...
Description ----------- The learner app throws a TypeError when viewing locked units due to `activeUnitId` being null, causing undefined property access errors in the sidebar component. This occurs when learners...
bug