From e74e199b976768da49e6d03e768d76468912df7e Mon Sep 17 00:00:00 2001 From: maliming Date: Thu, 19 Feb 2026 16:09:47 +0800 Subject: [PATCH 1/2] Set page title in Account Manage page --- .../src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml index 4b3d2a67dc..02186e03ae 100644 --- a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml +++ b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml @@ -3,11 +3,14 @@ @using Volo.Abp.Account.Localization @using Volo.Abp.Account.Web.Pages.Account @using Volo.Abp.AspNetCore.Mvc.UI.Theming +@using Volo.Abp.AspNetCore.Mvc.UI.Layout; @inject IThemeManager ThemeManager +@inject IPageLayout PageLayout @inject IHtmlLocalizer L @model ManageModel @{ Layout = ThemeManager.CurrentTheme.GetApplicationLayout(); + PageLayout.Content.Title = L["MyAccount"].Value; } @section scripts { From 19e1c478eeb694e7416192f4339240f35dea9055 Mon Sep 17 00:00:00 2001 From: Ma Liming Date: Thu, 19 Feb 2026 16:32:52 +0800 Subject: [PATCH 2/2] Update modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml index 02186e03ae..a8f72584f0 100644 --- a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml +++ b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml @@ -3,7 +3,7 @@ @using Volo.Abp.Account.Localization @using Volo.Abp.Account.Web.Pages.Account @using Volo.Abp.AspNetCore.Mvc.UI.Theming -@using Volo.Abp.AspNetCore.Mvc.UI.Layout; +@using Volo.Abp.AspNetCore.Mvc.UI.Layout @inject IThemeManager ThemeManager @inject IPageLayout PageLayout @inject IHtmlLocalizer L