From 195a02bae2f9f768596a90ccbb0c493c2918da1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zsef=20Farkas?= Date: Fri, 24 Mar 2017 20:36:07 +0100 Subject: [PATCH] Add missing BrowserAnimationsModule to AppModule of the electron build --- electron/src/app.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electron/src/app.module.ts b/electron/src/app.module.ts index 45ff56da..d59e24d3 100644 --- a/electron/src/app.module.ts +++ b/electron/src/app.module.ts @@ -1,6 +1,7 @@ import { NgModule, ReflectiveInjector } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { EffectsModule } from '@ngrx/effects'; import { StoreModule } from '@ngrx/store'; @@ -151,6 +152,7 @@ const storeConfig = { ], imports: [ BrowserModule, + BrowserAnimationsModule, FormsModule, DragulaModule, routing,