WT1.1.0+42 error fixes

This commit is contained in:
bossanyit
2020-12-30 21:50:11 +01:00
parent 2aecb9d431
commit 14b5b44347
14 changed files with 142 additions and 99 deletions
+4
View File
@@ -245,6 +245,10 @@ class ExerciseRepository {
}
void sortByDate() {
if (exerciseList.isEmpty) {
return;
}
exerciseList.sort((a, b) => b.dateAdd.compareTo(a.dateAdd));
this.exerciseLogList = List();