Skip to content

Commit

Permalink
patch courses page
Browse files Browse the repository at this point in the history
  • Loading branch information
TuuKeZu committed Aug 16, 2024
1 parent cfeb3ce commit 30f7e47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/compontents/Gradebook/Gradebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const SubjectObject = ({subject, courses, onLoad}) => {
<ul><a>{subject} </a><a>{grade}</a></ul>
<div className={styles['course-list']}>
{
Object.keys(courses).map((code, i) => {
Object.keys(courses).sort().map((code, i) => {
const course = courses[code];

return <CourseObject key={i} course={course} onLoad={onLoad} />
Expand Down
2 changes: 1 addition & 1 deletion src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"versionLabel": "STABLE",
"wilmaApi": "https://wilma.otawilma.fi/api",
"otaWilmaApi": "https://api.otawilma.fi/api",
"signature": "signature_here"
"signature": "12345_6789_101213"
}

0 comments on commit 30f7e47

Please sign in to comment.