Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LearningHub.Nhs.WebUI/Controllers/ReportsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ public async Task<IActionResult> CourseProgressReport(CourseCompletionViewModel

if (reportCreation.Courses.Count == 0)
{
matchedCourseNames = new List<string> { "all courses" };
matchedCourseNames = new List<string> { "All courses" };
}
else
{
Expand Down
6 changes: 3 additions & 3 deletions LearningHub.Nhs.WebUI/Views/Reports/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@

if (string.IsNullOrWhiteSpace(entry.CourseFilter))
{
matchedCourseNames = "all courses";
matchedCourseNamesDetails = new List<string> { "all courses" };
matchedCourseNames = "All courses";
matchedCourseNamesDetails = new List<string> { "All courses" };
}
else
{
Expand Down Expand Up @@ -96,7 +96,7 @@
<details class="nhsuk-details nhsuk-u-margin-top-2 nhsuk-u-margin-bottom-2">
<summary class="nhsuk-details__summary nhsuk-u-flex nhsuk-u-justify-content-space-between nhsuk-u-align-items-center">
<span class="nhsuk-details__summary-text">
course progress for @matchedCourseNames
Course progress for @matchedCourseNames
</span>
@if (downloadCheck)
{
Expand Down
Loading