Skip to content

Commit 5508390

Browse files
authored
Merge pull request #1384 from TechnologyEnhancedLearning/Develop/Fixes/TD-6147-Issue-with-the-wording-of-the-headings-on-the-'My-account---Notifications'-screen
TD-6147: Fixed issue with the wording of the headings on the 'My account - Notifications' screen
2 parents 5a582a5 + ede0e18 commit 5508390

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

LearningHub.Nhs.WebUI/Models/SideMenu/SideNavigationConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static IEnumerable<SideNavigationGroup> GetGroupedMenus()
4646
},
4747
new SideNavigationItem
4848
{
49-
Text = "Notification",
49+
Text = "Notifications",
5050
Controller = "Notification",
5151
Action = "Index",
5252
IsActive = route => MatchRoute(route, "Notification", "Index"),

LearningHub.Nhs.WebUI/Scripts/vuesrc/notification/notifications.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="notifications-panel lh-container-xl">
33
<div :class="[showMessage ? 'd-none' : 'd-block']">
4-
<h2 class="nhsuk-heading-l nhsuk-u-padding-bottom-5">System notifications</h2>
4+
<h2 class="nhsuk-heading-l nhsuk-u-padding-bottom-5">Notifications</h2>
55
<notification ref="priorityNotification"
66
:priorityType="this.NotificationPriority.Priority"
77
:showContent="this.showPriorityContent"

LearningHub.Nhs.WebUI/Views/Notification/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ViewData["Title"] = "System notifications";
2+
ViewData["Title"] = "Notifications";
33
}
44
@section NavBreadcrumbs {
55

0 commit comments

Comments
 (0)