Skip to content

Commit

Permalink
Version 1.45 (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
NomisNostab authored Oct 4, 2023
2 parents 02421ae + 483a115 commit ed9235b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Topo/Controller/ProgressDetailsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private async Task<byte[]> ProgressReport(OutputType outputType = OutputType.PDF
internal async Task StartedOasPdfClick()
{
byte[] report = await StartedOASWorksheet(OutputType.PDF);
var fileName = $"Personal_Progress_OAS_{model.Member.first_name}_{model.Member.last_name}.pdf";
var fileName = $"Personal_Progress_{model.Member.first_name}_{model.Member.last_name}_OAS.pdf";

// Send the data to JS to actually download the file
await JS.InvokeVoidAsync("BlazorDownloadFile", fileName, "application/pdf", report);
Expand All @@ -88,7 +88,7 @@ internal async Task StartedOasPdfClick()
internal async Task StartedCoreOasPdfClick()
{
byte[] report = await StartedCoreOASWorksheet(OutputType.PDF);
var fileName = $"Personal_Progress_OAS_{model.Member.first_name}_{model.Member.last_name}.pdf";
var fileName = $"Personal_Progress_{model.Member.first_name}_{model.Member.last_name}_OAS.pdf";

// Send the data to JS to actually download the file
await JS.InvokeVoidAsync("BlazorDownloadFile", fileName, "application/pdf", report);
Expand Down
2 changes: 1 addition & 1 deletion Topo/Shared/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
}
<div class="nav-item px-3">
<NavLink class="nav-link disabled" href="" >
<span class="" aria-hidden="true"></span> Version 1.44
<span class="" aria-hidden="true"></span> Version 1.45
</NavLink>
</div>

Expand Down

0 comments on commit ed9235b

Please sign in to comment.