diff --git a/src/UI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml b/src/UI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml
index 878f3afdde..21cfadb73d 100644
--- a/src/UI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml
+++ b/src/UI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml
@@ -2,6 +2,7 @@
@model ChangePasswordModel
@{
ViewData["Title"] = "Change password";
+ ViewData["ActivePage"] = ManageNavPages.ChangePassword;
}
@ViewData["Title"]
diff --git a/src/UI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml b/src/UI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml
index e76617d469..eb1bc438ec 100644
--- a/src/UI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml
+++ b/src/UI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml
@@ -2,7 +2,7 @@
@model DeletePersonalDataModel
@{
ViewData["Title"] = "Delete Personal Data";
- ViewData["ActivePage"] = ManageNavPages.DeletePersonalData;
+ ViewData["ActivePage"] = ManageNavPages.PersonalData;
}
@ViewData["Title"]
diff --git a/src/UI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml b/src/UI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml
index a4f5ca4814..fa300e7b38 100644
--- a/src/UI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml
+++ b/src/UI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml
@@ -2,7 +2,7 @@
@model DownloadPersonalDataModel
@{
ViewData["Title"] = "Download Your Data";
- ViewData["ActivePage"] = ManageNavPages.DownloadPersonalData;
+ ViewData["ActivePage"] = ManageNavPages.PersonalData;
}
@ViewData["Title"]
diff --git a/src/UI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml b/src/UI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml
index b5592871e6..f1992da2d4 100644
--- a/src/UI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml
+++ b/src/UI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml
@@ -2,6 +2,7 @@
@model ExternalLoginsModel
@{
ViewData["Title"] = "Manage your external logins";
+ ViewData["ActivePage"] = ManageNavPages.ExternalLogins;
}
@Html.Partial("_StatusMessage", Model.StatusMessage)
diff --git a/src/UI/Areas/Identity/Pages/Account/Manage/Index.cshtml b/src/UI/Areas/Identity/Pages/Account/Manage/Index.cshtml
index c7d3da0bd6..cf71af3425 100644
--- a/src/UI/Areas/Identity/Pages/Account/Manage/Index.cshtml
+++ b/src/UI/Areas/Identity/Pages/Account/Manage/Index.cshtml
@@ -2,6 +2,7 @@
@model IndexModel
@{
ViewData["Title"] = "Profile";
+ ViewData["ActivePage"] = ManageNavPages.Index;
}
@ViewData["Title"]
diff --git a/src/UI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml b/src/UI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml
index d03b52f0d0..bfd2791584 100644
--- a/src/UI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml
+++ b/src/UI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml
@@ -2,6 +2,7 @@
@model TwoFactorAuthenticationModel
@{
ViewData["Title"] = "Two-factor authentication (2FA)";
+ ViewData["ActivePage"] = ManageNavPages.TwoFactorAuthentication;
}
@Html.Partial("_StatusMessage", Model.StatusMessage)