diff --git a/LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs b/LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs index bbf6740f2..c7ae8692d 100644 --- a/LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs +++ b/LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs @@ -185,7 +185,7 @@ public List StatusFilterCheckbox() var checkboxes = new List() { new CheckboxListItemViewModel("Complete", "Completed", null), - new CheckboxListItemViewModel("Incomplete", "In Progress", null), + new CheckboxListItemViewModel("Incomplete", "In progress", null), new CheckboxListItemViewModel("Passed", "Passed", null), new CheckboxListItemViewModel("Failed", "Failed", null), new CheckboxListItemViewModel("Downloaded", "Downloaded", null), diff --git a/LearningHub.Nhs.WebUI/Views/MyLearning/_filterSummary.cshtml b/LearningHub.Nhs.WebUI/Views/MyLearning/_filterSummary.cshtml index 2e9c726b0..42ad771b1 100644 --- a/LearningHub.Nhs.WebUI/Views/MyLearning/_filterSummary.cshtml +++ b/LearningHub.Nhs.WebUI/Views/MyLearning/_filterSummary.cshtml @@ -57,7 +57,7 @@ } @if (Model.Incomplete) { - filtersummary = filtersummary + $" In Progress"; + filtersummary = filtersummary + $" In progress"; } @if (Model.Passed) {