Skip to content

Commit

Permalink
Version 1.51 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
NomisNostab authored Mar 24, 2024
2 parents 6bc56d3 + 3609de8 commit c1723a5
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 c1723a5

Please sign in to comment.