Hi,
Please check this document link https://docs.abp.io/en/commercial/latest/themes/lepton-x/blazor?UI=BlazorServer#main-header
Thank you.
Hi
Have you added any controller with same path?
Hello,
could you please try to add below code in app.component.ts
file of angular application
export class AppComponent {
constructor(private authService: AuthService) {
if (!this.authService.isAuthenticated) {
this.authService.navigateToLogin();
}
}
}
Hi ,
Can you check once follwoing links 1.https://support.abp.io/QA/Questions/5962/How-to-set-permissions-for-dynamic-menu-items 2.https://github.com/abpframework/abp/issues/4448
Thank you.
Hello,
I am not exactly sure but I will give you some workaround.
Please try to add this css in main.css
under Blazor project
div.lpx-brand-name {
left: 200px;
top: 15px;
}
div.lpx-header-bottom ul.lpx-nav-menu
{
justify-content: normal;
overflow-x:scroll;
}
It will solve menu scrolling and Menu banding issue, which results like
thanks