From 9a81d19b61e473121d8255f0e6c68f548847c792 Mon Sep 17 00:00:00 2001 From: Swapnamol Abraham Date: Wed, 17 Apr 2024 14:11:18 +0100 Subject: [PATCH] Corrected the naming convention for uniformity --- LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs | 2 +- LearningHub.Nhs.WebUI/Views/MyLearning/_filterSummary.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {