Hello,
Please shared your package.json file & also check logs.
Thanks
Hello,
Please check the similar issue https://support.abp.io/QA/Questions/6657/Generation-of-Service-Proxies-for-Angular-not-handling-subclasses-of-PagedResultDtoT-correctly#answer-3a10d21f-9a90-0a22-9316-f313aa69f8a5
Thanks.
Hello again,
sorry its my bad I didn't understood your case at first glance.
You can download the source code of Leptonx from ABP suite like
In that you can find code for Languages Switch component as shown in ss
you can download it and then customize it as per your requirement.
also have look to the previous documentation https://docs.abp.io/en/commercial/6.0/themes/lepton-x/commercial/mvc#main-menu if it helps you
Thanks
Hello,
As given in documentation I have followed the steps as below
Create new component my-awsome-tab-component
with module
create a file named manage-profile-tabs.provider.ts
under the src
then add the given code
import { APP_INITIALIZER } from '@angular/core';
import { TwoFactorTabComponent } from '@volo/abp.ng.account/public';
import {
eAccountManageProfileTabNames,
ManageProfileTabsService,
} from '@volo/abp.ng.account/public/config';
import { MyAwesomeTabComponent } from './my-awesome-tab/my-awesome-tab.component';
export const MANAGE_PROFILE_TAB_PROVIDER = {
provide: APP_INITIALIZER,
useFactory: configureManageProfileTabs,
deps: [ManageProfileTabsService],
multi: true,
};
export function configureManageProfileTabs(tabs: ManageProfileTabsService) {
return () => {
tabs.add([
{
name: 'ChangePasswordNew',
order: 5,
component: MyAwesomeTabComponent,
},
]);
tabs.patch(eAccountManageProfileTabNames.TwoFactor, {
name: 'Two factor authentication',
component: TwoFactorTabComponent,
});
tabs.remove([eAccountManageProfileTabNames.ChangePassword]);
};
}
app.module.ts
import { MANAGE_PROFILE_TAB_PROVIDER } from './manage-profile-tabs.provider';
import { MyAwesomeTabModule } from './my-awesome-tab/my-awesome-tab.module';
@NgModule({
//...
imports: [
//...
MyAwesomeTabModule,
],
providers: [
//...
MANAGE_PROFILE_TAB_PROVIDER
]
})
export class AppModule {}
please try with this.
thanks
Hello,
please check out https://docs.abp.io/en/commercial/7.4/modules/language-management
Thanks
Hello,
Please check this similar issue https://gist.github.com/mehmet-erim/c4e5c7a760388b0fdb21049325e54960
Thanks.
Hello,
I have checked your log files there is no any error or exception Please check out https://support.abp.io/QA/Questions/1015/Email-is-not-coming-after-forgot-password#answer-5c4820a3-7106-c96a-26bd-39fb323e3594 if it helps you.
Thanks
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