Skip to content

Commit

Permalink
🏷️(frontend) fix OpenEdX level education "other" value
Browse files Browse the repository at this point in the history
The "other" value of the OpenEdxLevelOfEducation was wrong ("o"). It appears the
 right value is "other".
  • Loading branch information
jbpenrath committed Sep 23, 2024
1 parent 394863d commit f68cc91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unrealeased]

### Fixed

- Fix Open EdX Level education enum "other" value

## [2.29.1]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/js/types/openEdx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export enum OpenEdxLevelOfEducation {
JUNIOR_SECONDARY_OR_MIDDLE_SCHOOL = 'jhs',
ELEMENTARY_PRIMARY_SCHOOL = 'el',
NONE = 'none',
OTHER = 'o',
OTHER = 'other',
}

// * null
Expand Down

0 comments on commit f68cc91

Please sign in to comment.