Hi, I've just created an app-pro template with Blazor UI but I could not reproduce the problem. The problem might be related to you could have closed the terminal before the abp install-libs
command was completed. So, please delete the yarn.lock file (under the .HttpApi.Host project) and re-run the abp install-libs
command.
Hi, I'll try to reproduce the problem and write you back asap.
Excellent, thanks for the support @EngincanV
You're welcome :)
Hi, please check this answer and apply the changes suggested in the answer. It should solve your problem.
Best Regards.
But when you do that, you might get a route mismatch (or duplicate route) exception, so might need to remove the @page "/" statement from your Index.razor file.
Did you also do this?
Hi, this seems to be an unrelated issue with ABP. You can try to find the solution by reading Microsoft's official Blazor documentation.
I checked official documentation but was not able to find out to set a custom page as the default page after login. Please help me.
Maybe you can set the page route as "/" for your landing page.
@page "/"
@page "/my-landing-page-route"
But when you do that, you might get a route mismatch (or duplicate route) exception, so might need to remove the @page "/"
statement from your Index.razor file.
I close this question since it's not related with ABP but I hope my above suggestion will work for you.
Best regards.
Hi, this seems to be an unrelated issue with ABP. You can try to find the solution by reading Microsoft's official Blazor documentation.
Hi, to ensure the Azure Key Vault configurations are correct, can you run your project in DEBUG mode and try to obtain your value (any value that you've defined in Azure) from the IConfiguration
interface?
Hi, as I know there is not any way to do that unless overriding the related page and applying the logic.
Or is there a way to manually create the input without using the <ExtensionProperties> component?
We use this component in modules to show extended properties on UI and it basically creates HTML tags for the extended properties by their type.
You can check the ExtensionProperties
component component and create a new component for you to show extended properties on UI by your needs.
BTW, I've created an issue (#12249) for your suggestion and we'll consider it.