Skip to content

Commit ede0e18

Browse files
committed
TD-6147: Fixed issue with the wording of the headings on the 'My account - Notifications' screen
1 parent 5a582a5 commit ede0e18

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)