MOBILE-2687 courses: Fix course sorting
parent
11babee5fe
commit
35a4d6d3a2
|
@ -137,12 +137,12 @@ export class CoreCoursesHelperProvider {
|
||||||
break;
|
break;
|
||||||
case 'lastaccess':
|
case 'lastaccess':
|
||||||
courses.sort((a, b) => {
|
courses.sort((a, b) => {
|
||||||
return b.lastaccess - b.lastaccess;
|
return b.lastaccess - a.lastaccess;
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'timemodified':
|
case 'timemodified':
|
||||||
courses.sort((a, b) => {
|
courses.sort((a, b) => {
|
||||||
return b.timemodified - b.timemodified;
|
return b.timemodified - a.timemodified;
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue