Thank you, Issue resoved.
When logging out from the server side pages (Manage your profile page), the redirected url goes to swagger.
refer
I wanted to override this behavior, I followed the abp.io documentation : https://docs.abp.io/en/abp/latest/UI/Blazor/Navigation-Menu#manipulating-the-existing-menu-items
but when I call the context.Menu.FindMenuItem("Account.Logout"), it returns null object.
refer
Any solution?
Hi,
These pages are in AuthServer. If you use separated AuthServer in your project, you should add favicon.svg file in your AuthServer project too.
wwwroot/favicon.svg
Ok, overridden the default icon with custom icon, but what about the title in the header? How to change that?
How to change the favicon and title of the header in the profile settings page in the blazor app?
The changes in the Account - default.cshtml only reflects in the login/reset-pass/confirm-email/register pages, not the profile page.
hi
Is the
TenantId
have a value?Or specify the
Name
ofTenantId
.[BindProperty(Name = "__tenant", SupportsGet = true)] public Guid? TenantId { get; set; }
You can do not to switch the tenant, the middleware will automatically resolve and switch the tenant by default
Ok, specifying the name of the tenantId worked. Massive thank you.