Skip to content

Commit 9a81d19

Browse files
committed
Corrected the naming convention for uniformity
1 parent 28ec872 commit 9a81d19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public List<CheckboxListItemViewModel> StatusFilterCheckbox()
185185
var checkboxes = new List<CheckboxListItemViewModel>()
186186
{
187187
new CheckboxListItemViewModel("Complete", "Completed", null),
188-
new CheckboxListItemViewModel("Incomplete", "In Progress", null),
188+
new CheckboxListItemViewModel("Incomplete", "In progress", null),
189189
new CheckboxListItemViewModel("Passed", "Passed", null),
190190
new CheckboxListItemViewModel("Failed", "Failed", null),
191191
new CheckboxListItemViewModel("Downloaded", "Downloaded", null),

LearningHub.Nhs.WebUI/Views/MyLearning/_filterSummary.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
}
5858
@if (Model.Incomplete)
5959
{
60-
filtersummary = filtersummary + $" <strong class='nhsuk-tag'>In Progress</strong>";
60+
filtersummary = filtersummary + $" <strong class='nhsuk-tag'>In progress</strong>";
6161
}
6262
@if (Model.Passed)
6363
{

0 commit comments

Comments
 (0)