hi
It is also difficult to find the reason via the call.
I always need to reproduce the problem on my locally.
hi
, the following display the header and navigation side menu before redirecting to Account/Login...
If the current user is not authenticated the menu and header should be empty, right?
If there is a problem how can I reproduce it?
hi
If you can share a simple project to reproduce that will be great.
liming.ma@volosoft.com
hi
We are not familiar with Azure.
Yes, I was able to publish the application to a local folder (bin/Release/net7.0/publish) and run it from there with no problem.
This can say the code and environment are no problem.
I have attached screenshot of Azure AuthServer webapp configuration as Https only and certificates. The Authserver and API sites are not loading in browser with "https://" secure URLs
hi
I can't see your screenshot.
Good news.
hi
Can you try to publish the website locally?
dotnet publish
Good news.
hi
Add MyMobileNavbar
to your blazor project. We will fix that in the next version. Your question credit is refunded.
using System.Collections.Generic;
using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu.Navigation;
using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Navigation;
using Volo.Abp.DependencyInjection;
namespace EagEz.Test.Blazor;
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(MobileNavbar), typeof(MyMobileNavbar))]
public class MyMobileNavbar : MobileNavbar
{
public MyMobileNavbar()
{
SelectedMenuItems = new List<MenuItemViewModel>();
}
}
hi
How can I reproduce this problem in a new template project?