From 0ea71914ed9794fc1f75c1d6f12ed09c4b241289 Mon Sep 17 00:00:00 2001 From: clfreville2 Date: Mon, 17 Jun 2024 14:13:10 +0200 Subject: [PATCH] Fix pagination interaction --- src/app/app.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/app.config.ts b/src/app/app.config.ts index 751863a..d14633c 100644 --- a/src/app/app.config.ts +++ b/src/app/app.config.ts @@ -1,12 +1,13 @@ -import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; +import { ApplicationConfig } from '@angular/core'; import { provideRouter } from '@angular/router'; import { withComponentInputBinding } from '@angular/router'; +import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; import { routes } from './app.routes'; export const appConfig: ApplicationConfig = { providers: [ - provideZoneChangeDetection({ eventCoalescing: true }), + provideAnimationsAsync(), provideRouter(routes, withComponentInputBinding()), ], };