diff --git a/src/constants.ts b/src/constants.ts
index 927696fc6a5b96e975af9cbe1d6ffb1e3c5af031..959f9363075be1b3db1d2dd9348c64f48456254f 100644
--- a/src/constants.ts
+++ b/src/constants.ts
@@ -13,7 +13,7 @@ import Logger from './helpers/logger'
  * y - breaking changes / new features
  * z - fixes, small changes
  */
-export const versionString = '2.10.0'
+export const versionString = '2.10.1'
 
 
 export const supportMail = 'yapex@informatik.uni-halle.de'
diff --git a/src/state/reducers/manageGroupExercisesSite/getGroupsForExercisesCrudReducer.ts b/src/state/reducers/manageGroupExercisesSite/getGroupsForExercisesCrudReducer.ts
index e1f9cdcfa49ddf07c10078c1888aaea6b65950c7..80803effe0ff3a003df656a1d928191e1929f927 100644
--- a/src/state/reducers/manageGroupExercisesSite/getGroupsForExercisesCrudReducer.ts
+++ b/src/state/reducers/manageGroupExercisesSite/getGroupsForExercisesCrudReducer.ts
@@ -123,7 +123,8 @@ export function reducer(state: State = initial, action: AllActions): State {
             userGroup: p,
             pagination: {
               ...getInitialPaginationData(),
-              orderByProp: 'displayName',
+              orderByProp: 'lastUpdatedAt',
+              isOrderByDesc: true,
               pageSize: pageSize
             },
             exercisePreviews: [] as any,