Hello,
Could you please change "@volosoft/abp.ng.theme.lepton-x": "~3.1.1",
.
After that delete yarn.lock
file.
Run yarn
command and then run npm start
please let me know if it helps you.
thanks
Hello,
when you use command abp update
it has updated to latest stable version 8.1.3
If you want to update it to 8.1.0 that time you should use command like abp update --version 8.1.0
Please check your abp cli
version also it should updated to 8.1.0 then it will work
FYI when you want to update your abp application from one version to another you need to follow migration guide https://docs.abp.io/en/abp/latest/Migration-Guides/Index
Thanks
Hello,
please check similar issue https://support.abp.io/QA/Questions/1790/Forgot-Password--password-reset-codelink-not-send-to-email
thanks
Hello,
I have used 8.0.5 version I have checked at my end it's working fine.
Thanks
Hello,
To Customize UserComponent you have to add Identity Module as a Project in your application. It will result like
Now you have to add your custom component under this folder as shown in image
and then add below code in identity-routing.module.ts
{
path: 'users',
component: ReplaceableRouteContainerComponent,
data: {
requiredPolicy: 'AbpIdentity.Users',
replaceableComponent: {
key: eIdentityComponents.Users,
defaultComponent: MyComponentComponent,
} as ReplaceableComponents.RouteData<MyComponentComponent>,
},
},
It will replace your component.
Thanks
Hello,
could you please share any code snippet to reproduce the issue or you may share any sample project at support@abp.io so that we can better assist you.
Thanks
Hello again,
could you please try this once https://support.abp.io/QA/Questions/5026/Starting-Angular---cleanfresh-project#answer-3a0b0dc4-5baa-df28-682b-e9356fdfc079 if it doesn't help you could you please share a sample project on support@abp.io
thanks
Hello,
please check out https://docs.abp.io/en/abp/8.1/Migration-Guides/OpenIddict-Angular
thanks