diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-01-30 22:41:14 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-01-30 22:41:14 +0100 |
commit | 28798b5d949826551740fc893d06e6424b77aa6a (patch) | |
tree | e235a7f49164a06c4b76df49ca61b89998d4ed81 /client/src/app/shared/shared.module.ts | |
parent | 13fc89f4a4b91b3da10493517de556240fb65463 (diff) | |
download | PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.tar.gz PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.tar.zst PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.zip |
Client: replace simple tables by ng2 smart table component
Diffstat (limited to 'client/src/app/shared/shared.module.ts')
-rw-r--r-- | client/src/app/shared/shared.module.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 7b2386d6c..99893c8b1 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts | |||
@@ -10,6 +10,7 @@ import { ProgressbarModule } from 'ng2-bootstrap/progressbar'; | |||
10 | import { PaginationModule } from 'ng2-bootstrap/pagination'; | 10 | import { PaginationModule } from 'ng2-bootstrap/pagination'; |
11 | import { ModalModule } from 'ng2-bootstrap/modal'; | 11 | import { ModalModule } from 'ng2-bootstrap/modal'; |
12 | import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload'; | 12 | import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload'; |
13 | import { Ng2SmartTableModule } from 'ng2-smart-table'; | ||
13 | 14 | ||
14 | import { AUTH_HTTP_PROVIDERS } from './auth'; | 15 | import { AUTH_HTTP_PROVIDERS } from './auth'; |
15 | import { RestExtractor, RestService } from './rest'; | 16 | import { RestExtractor, RestService } from './rest'; |
@@ -29,7 +30,8 @@ import { VideoAbuseService } from './video-abuse'; | |||
29 | PaginationModule.forRoot(), | 30 | PaginationModule.forRoot(), |
30 | ProgressbarModule.forRoot(), | 31 | ProgressbarModule.forRoot(), |
31 | 32 | ||
32 | FileUploadModule | 33 | FileUploadModule, |
34 | Ng2SmartTableModule | ||
33 | ], | 35 | ], |
34 | 36 | ||
35 | declarations: [ | 37 | declarations: [ |
@@ -49,6 +51,7 @@ import { VideoAbuseService } from './video-abuse'; | |||
49 | ModalModule, | 51 | ModalModule, |
50 | PaginationModule, | 52 | PaginationModule, |
51 | ProgressbarModule, | 53 | ProgressbarModule, |
54 | Ng2SmartTableModule, | ||
52 | BytesPipe, | 55 | BytesPipe, |
53 | 56 | ||
54 | SearchComponent | 57 | SearchComponent |