Fix pagination interaction

pull/4/head
Clément FRÉVILLE 12 months ago
parent 13059ca8d1
commit 0ea71914ed

@ -1,12 +1,13 @@
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router'; import { provideRouter } from '@angular/router';
import { withComponentInputBinding } from '@angular/router'; import { withComponentInputBinding } from '@angular/router';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import { routes } from './app.routes'; import { routes } from './app.routes';
export const appConfig: ApplicationConfig = { export const appConfig: ApplicationConfig = {
providers: [ providers: [
provideZoneChangeDetection({ eventCoalescing: true }), provideAnimationsAsync(),
provideRouter(routes, withComponentInputBinding()), provideRouter(routes, withComponentInputBinding()),
], ],
}; };

Loading…
Cancel
Save