Skip to content

Commit 92fd2df

Browse files
committed
fix(collapse): No provider for AnimationBuilder
- add import `BrowserAnimationsModule` to `app.module` - update `[email protected]`
1 parent ada9236 commit 92fd2df

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"moment": "^2.24.0",
4949
"mutationobserver-shim": "^0.3.3",
5050
"ng2-charts": "^2.3.0",
51-
"ngx-bootstrap": "^3.3.0",
51+
"ngx-bootstrap": "^4.2.0",
5252
"ngx-perfect-scrollbar": "^7.2.1",
5353
"rxjs": "^6.5.2",
5454
"simple-line-icons": "^2.4.1",

src/app/app.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { BrowserModule } from '@angular/platform-browser';
22
import { NgModule } from '@angular/core';
33
import { LocationStrategy, HashLocationStrategy } from '@angular/common';
4+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
45

56
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
67
import { PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar';
@@ -43,6 +44,7 @@ import { ChartsModule } from 'ng2-charts';
4344
@NgModule({
4445
imports: [
4546
BrowserModule,
47+
BrowserAnimationsModule,
4648
AppRoutingModule,
4749
AppAsideModule,
4850
AppBreadcrumbModule.forRoot(),

0 commit comments

Comments
 (0)