multi-selection filter enable in all screen, icon added in sidebr sub-menus, remove un-used components, add border on left of row on hover, on click same open menu page reload
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
||||
import { provideRouter, withRouterConfig } from '@angular/router';
|
||||
import { provideRouter, withRouterConfig, RouteReuseStrategy } from '@angular/router';
|
||||
import { provideAnimations } from '@angular/platform-browser/animations';
|
||||
import { provideHttpClient, withInterceptors } from '@angular/common/http';
|
||||
import { App_Route } from './app.routes';
|
||||
@@ -8,10 +8,12 @@ import { provideCharts, withDefaultRegisterables } from 'ng2-charts';
|
||||
import { authInterceptor } from './core/interceptors/auth.interceptor';
|
||||
import { errorInterceptor } from './core/interceptors/error.interceptor';
|
||||
import { loadingInterceptor } from './core/interceptors/loading-interceptor';
|
||||
import { ReloadRouteReuseStrategy } from './core/strategies/reload-route-reuse.strategy';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [
|
||||
provideRouter(App_Route, withRouterConfig({ onSameUrlNavigation: 'reload' })),
|
||||
{ provide: RouteReuseStrategy, useClass: ReloadRouteReuseStrategy },
|
||||
provideHttpClient(withInterceptors([authInterceptor, errorInterceptor,loadingInterceptor])),
|
||||
provideAnimations(),
|
||||
provideCharts(withDefaultRegisterables()),
|
||||
|
||||
Reference in New Issue
Block a user