]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.module.ts
Fix regression my-account menu overflow-x on screen width < 800px (#2707)
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.module.ts
1 import { NgModule } from '@angular/core'
2 import { ChartModule } from 'primeng/chart'
3 import { MyAccountVideoChannelsRoutingModule } from './my-account-video-channels-routing.module'
4 import { MyAccountVideoChannelsComponent } from './my-account-video-channels.component'
5 import { MyAccountVideoChannelCreateComponent } from './my-account-video-channel-create.component'
6 import { MyAccountVideoChannelUpdateComponent } from './my-account-video-channel-update.component'
7 import { SharedModule } from '@app/shared'
8
9 @NgModule({
10 imports: [
11 MyAccountVideoChannelsRoutingModule,
12 SharedModule,
13 ChartModule
14 ],
15
16 declarations: [
17 MyAccountVideoChannelsComponent,
18 MyAccountVideoChannelCreateComponent,
19 MyAccountVideoChannelUpdateComponent
20 ],
21
22 exports: [],
23 providers: []
24 })
25 export class MyAccountVideoChannelsModule { }