aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-08-28 20:28:12 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-08-28 20:28:12 +0200
commite7dbeae8d915cdf4470ceb51c2724b04148b30b5 (patch)
tree7b838cfb2b514bc141402f1c8a16f710dbe2513f
parent62ccb24e24fd6701c7cdc967336ed146d12236ec (diff)
downloadPeerTube-e7dbeae8d915cdf4470ceb51c2724b04148b30b5.tar.gz
PeerTube-e7dbeae8d915cdf4470ceb51c2724b04148b30b5.tar.zst
PeerTube-e7dbeae8d915cdf4470ceb51c2724b04148b30b5.zip
Fix client admin
-rw-r--r--client/src/app/core/core.module.ts2
-rw-r--r--client/src/app/shared/shared.module.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts
index 382febe5c..9ca94dd0e 100644
--- a/client/src/app/core/core.module.ts
+++ b/client/src/app/core/core.module.ts
@@ -2,6 +2,7 @@ import { NgModule, Optional, SkipSelf } from '@angular/core'
2import { CommonModule } from '@angular/common' 2import { CommonModule } from '@angular/common'
3import { HttpModule } from '@angular/http' 3import { HttpModule } from '@angular/http'
4import { RouterModule } from '@angular/router' 4import { RouterModule } from '@angular/router'
5import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
5 6
6import { SimpleNotificationsModule } from 'angular2-notifications' 7import { SimpleNotificationsModule } from 'angular2-notifications'
7import { ModalModule } from 'ngx-bootstrap/modal' 8import { ModalModule } from 'ngx-bootstrap/modal'
@@ -17,6 +18,7 @@ import { throwIfAlreadyLoaded } from './module-import-guard'
17 CommonModule, 18 CommonModule,
18 HttpModule, 19 HttpModule,
19 RouterModule, 20 RouterModule,
21 BrowserAnimationsModule,
20 22
21 ModalModule, 23 ModalModule,
22 SimpleNotificationsModule.forRoot() 24 SimpleNotificationsModule.forRoot()
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts
index d6a742693..99b51aa4e 100644
--- a/client/src/app/shared/shared.module.ts
+++ b/client/src/app/shared/shared.module.ts
@@ -3,7 +3,6 @@ import { CommonModule } from '@angular/common'
3import { HttpModule } from '@angular/http' 3import { HttpModule } from '@angular/http'
4import { FormsModule, ReactiveFormsModule } from '@angular/forms' 4import { FormsModule, ReactiveFormsModule } from '@angular/forms'
5import { RouterModule } from '@angular/router' 5import { RouterModule } from '@angular/router'
6import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
7 6
8import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe' 7import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'
9import { KeysPipe } from 'angular-pipes/src/object/keys.pipe' 8import { KeysPipe } from 'angular-pipes/src/object/keys.pipe'
@@ -27,7 +26,6 @@ import { VideoAbuseService } from './video-abuse'
27 ReactiveFormsModule, 26 ReactiveFormsModule,
28 HttpModule, 27 HttpModule,
29 RouterModule, 28 RouterModule,
30 BrowserAnimationsModule,
31 29
32 BsDropdownModule.forRoot(), 30 BsDropdownModule.forRoot(),
33 ModalModule.forRoot(), 31 ModalModule.forRoot(),