Skip to content

Commit

Permalink
Issue-126: Fix name sorting (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
NomisNostab authored Mar 24, 2024
2 parents e7fc9af + 7f8ef46 commit 3609de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Services/ReportService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ public IWorkbook GenerateAttendanceReportWorkbook(AttendanceReportModel attendan

// Add youth member rows
var sumStartRow = rowNumber + 1;
foreach (var groupedAttendance in groupedAttendances)
foreach (var groupedAttendance in groupedAttendances.OrderBy(a => a.Key))
{
// Name
rowNumber++;
Expand Down

0 comments on commit 3609de8

Please sign in to comment.