Skip to content

Commit

Permalink
Version 1.53 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
NomisNostab authored Apr 5, 2024
2 parents 74f5c39 + f3fc300 commit 64d03f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Services/ReportService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2113,7 +2113,7 @@ public IWorkbook GenerateProgressWorkbook(ProgressDetailsPageViewModel progressE
sheet.Range[rowNumber, 1].CellStyle.Font.Bold = true;
for (int i = 1; i < 10; i++)
{
var oas = progressEntries.OASSummaries.Where(o => o.Stream == "apline" && o.Stage == i).OrderByDescending(o => o.Awarded).FirstOrDefault();
var oas = progressEntries.OASSummaries.Where(o => o.Stream == "alpine" && o.Stage == i).OrderByDescending(o => o.Awarded).FirstOrDefault();
var oasText = "";
oasText = setOasText(oas, oasText);
sheet.Range[rowNumber, i + 1].Text = oasText;
Expand Down
2 changes: 1 addition & 1 deletion Topo/Services/StorageService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,6 @@ public bool IsYouthMember
}
}

public string Version = "1.52";
public string Version = "1.53";
}
}
Loading

0 comments on commit 64d03f7

Please sign in to comment.