Hello ,
Please check this answer given by EngincanV https://support.abp.io/qa/questions/2116/310c3140-7424-d7ab-eeea-3a003ed02853.
Thank you.
Hello,
If you are facing issue for v7.2.2 then update your ABP version to v7.2.3 (follow above steps) and create new project and try to run.
I have checked at my end the application is working fine in both 7.2.2 and 7.2.3 versions.
thanks,
Hello,
sorry for late, Can you please confirm once have you followed the steps provided above? If you install ABP v7.3.2 then why you are using update command, you just have to install it. In above steps first 3 steps are to uninstall previous version and next 3 steps are to install desired version, you may change it and after that no need to use update command.
If you want to upgrade your previous version application/ project to newer version that time you need to follow migration guides https://docs.abp.io/en/abp/latest/Migration-Guides/Index
Thanks.
Hello,
please check out https://www.npmjs.com/package/@craftsjs/perfect-scrollbar?activeTab=readme and also check version.
thanks
Hello , Please check below codes one.
import { ContentProjectionService, PROJECTION_STRATEGY } from '@abp/ng.core';
import { ToasterService } from '@abp/ng.theme.shared';
import { HttpErrorResponse } from '@angular/common/http';
import { Injector } from '@angular/core';
import { of, EMPTY } from 'rxjs';
import { Error404Component } from './error404/error404.component';
export function handleHttpErrors(injector: Injector, httpError: HttpErrorResponse) {
if (httpError.status === 400) {
const toaster = injector.get(ToasterService);
toaster.error('You Choose Bad request!', '400');
return EMPTY;
}
if (httpError.status === 404) {
const contentProjection = injector.get(ContentProjectionService);
contentProjection.projectContent(PROJECTION_STRATEGY.AppendComponentToBody(Error404Component));
return EMPTY;
}
return of(httpError);
}
2.app.module.ts
declarations: [AppComponent,Error404Component],
providers: [APP_ROUTE_PROVIDER, BOOKS_BOOK_ROUTE_PROVIDER,{ provide: HTTP_ERROR_HANDLER, useValue: handleHttpErrors }],
Thank you.
You can check this issue https://support.abp.io/qa/questions/6107/3a0eb5c3-8fa3-d418-542f-60116801cab1.
For me its working fine can you please check once code at your end.
Hello ,
You can check this issue https://support.abp.io/qa/questions/6107/3a0eb5c3-8fa3-d418-542f-60116801cab1.
Thank you.
Hello ,
You can check this similar issue https://support.abp.io/QA/Questions/6220/Customize-HTTP-Error-Handler
Thank you.