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.
Hello,
could you please share Backend error logs
thanks
Hello,
could you please try this way -
dotnet tool uninstall -g volo.abp.cli dotnet tool uninstall -g volo.abp.Suite Delete folder after running uninstall command (C:\Users\MyName.abp) dotnet tool install -g volo.abp.cli --version 8.0.2 after this sign in with abp login username -p password abp suite install --v 8.0.2
thanks
Hello ,
Please check out this similar issue https://github.com/abpframework/abp/issues/16302#issuecomment-1531456877 https://support.abp.io/QA/Questions/2103/React-Native-External-Login-Approach If it finds helpful for you.
Thank you.
Hello ,
Can you please check out this https://support.abp.io/QA/Questions/5295/Tenant-specific-themes
Thank you.