Skip to content
Snippets Groups Projects
Commit 9a6c0332 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- own exercises lsit is now also default sorted by last updated at

parent 9914816e
Branches
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ import Logger from './helpers/logger' ...@@ -13,7 +13,7 @@ import Logger from './helpers/logger'
* y - breaking changes / new features * y - breaking changes / new features
* z - fixes, small changes * z - fixes, small changes
*/ */
export const versionString = '2.10.3' export const versionString = '2.10.4'
export const supportMail = 'yapex@informatik.uni-halle.de' export const supportMail = 'yapex@informatik.uni-halle.de'
......
...@@ -28,14 +28,15 @@ export const initial: State = { ...@@ -28,14 +28,15 @@ export const initial: State = {
ownExercises: [], ownExercises: [],
isLoading: false, isLoading: false,
sortByKey: 'displayName', sortByKey: 'lastUpdatedAt',
sortDirection: SortDirection.ascending, sortDirection: SortDirection.descending,
isTagsFilterDisplayed: false, isTagsFilterDisplayed: false,
pagination: { pagination: {
...getInitialPaginationData(), ...getInitialPaginationData(),
orderByProp: 'displayName' orderByProp: 'lastUpdatedAt',
isOrderByDesc: true,
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment