develop-fix-geolocation #91

Merged
Pupsi merged 3 commits from develop-fix-geolocation into develop 2025-10-01 17:08:17 +00:00
3 changed files with 8 additions and 3 deletions
Showing only changes of commit a460d2b296 - Show all commits

View File

@@ -14,8 +14,8 @@ class ParticipantsListView extends StatelessWidget {
final participants = participantsResponse.data
.sorted((a, b) {
final t = a.participantType.index.compareTo(b.participantType.index);
if (t != 0) return t;
final typeComparison = a.participantType.index.compareTo(b.participantType.index);
if (typeComparison != 0) return typeComparison;
return lastname(a).compareTo(lastname(b));
});
var groupedParticipants = participants.groupListsBy((participant) => participant.participantType);