From e74e199b976768da49e6d03e768d76468912df7e Mon Sep 17 00:00:00 2001 From: maliming Date: Thu, 19 Feb 2026 16:09:47 +0800 Subject: [PATCH] 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 {