same result
Why don't you try first rather than answering with a generality?
I figured you'd ask for this, but if you go ahead and produce your own test project and use the code I've included in the ticket I'm sure you'll receive the same error. Let me know when you've done this and then we can proceed.
I have already tried that with no difference
Hi,
Ok, I've implemented the changes in your last commit and that has resolved the issue I'm having with the stylesheets loading multiple times as well as the user menu not being clickable. I appreciate your help in resolving this issue.
Curious though if with abp9+ there is a better way of implementing custom layouts on a page by page basis while utilizing all the underlying leptonx components, etc. We have purchased the full source code and I see abp developer comments indicating that there should be a better way of doing this in the future.
Thanks again.
checking it now, but any resolution to the js function that does not exist in 7.3.0-rc.3?
Hi,
You have not address the issue with the stylesheets loading multiple times as stated in bullet point #1 in my previous response. Additionally when I apply these fixes to my actual project which is based on ABP 7.3.0-rc.3 I get the following error when my blazor app launches.
Hi,
So the sample has been updated completely now it Git to show you the problems I'm having.
Thanks.
I've updated the solution in git for you
Hi,
For starters change the .RequiredPermissions on sample1, sample2 and sample3 in the menu contribution to host
context.Menu.AddItem(
new ApplicationMenuItem(
"Sample1",
"Sample1",
"/Sample1",
icon: "fa fa-chart-line",
order: 3
).RequirePermissions(ABPSamplePermissions.Dashboard.Host)
);
context.Menu.AddItem(
new ApplicationMenuItem(
"Sample2",
"Sample2",
"/Sample2",
icon: "fa fa-chart-line",
order: 4
).RequirePermissions(ABPSamplePermissions.Dashboard.Host)
);
context.Menu.AddItem(
new ApplicationMenuItem(
"Sample3",
"Sample3",
"/Sample3",
icon: "fa fa-chart-line",
order: 5
).RequirePermissions(ABPSamplePermissions.Dashboard.Host)
);
and then start gong to them. you'll see the css stylesheet files bein loaded several times.