diff options
author | Chocobozzz <me@florianbigard.com> | 2019-06-19 14:59:35 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-19 15:05:37 +0200 |
commit | ccfcdb6785111685d4385e345545b6f89520a9a0 (patch) | |
tree | deed63a9f678a54373c27398ee7bf153fe446c05 /client/src/app | |
parent | 3caf77d3b11f2dbc12e52d665183d36604c1dab9 (diff) | |
download | PeerTube-ccfcdb6785111685d4385e345545b6f89520a9a0.tar.gz PeerTube-ccfcdb6785111685d4385e345545b6f89520a9a0.tar.zst PeerTube-ccfcdb6785111685d4385e345545b6f89520a9a0.zip |
Fix lint
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+my-account/my-account.module.ts | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/client/src/app/+my-account/my-account.module.ts b/client/src/app/+my-account/my-account.module.ts index aeda637c2..a1b198e3e 100644 --- a/client/src/app/+my-account/my-account.module.ts +++ b/client/src/app/+my-account/my-account.module.ts | |||
@@ -25,10 +25,16 @@ import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-b | |||
25 | import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component' | 25 | import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component' |
26 | import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component' | 26 | import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component' |
27 | import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences' | 27 | import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences' |
28 | import { MyAccountVideoPlaylistCreateComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component' | 28 | import { |
29 | import { MyAccountVideoPlaylistUpdateComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component' | 29 | MyAccountVideoPlaylistCreateComponent |
30 | } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component' | ||
31 | import { | ||
32 | MyAccountVideoPlaylistUpdateComponent | ||
33 | } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component' | ||
30 | import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component' | 34 | import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component' |
31 | import { MyAccountVideoPlaylistElementsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component' | 35 | import { |
36 | MyAccountVideoPlaylistElementsComponent | ||
37 | } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component' | ||
32 | import { DragDropModule } from '@angular/cdk/drag-drop' | 38 | import { DragDropModule } from '@angular/cdk/drag-drop' |
33 | import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email' | 39 | import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email' |
34 | import { MultiSelectModule } from 'primeng/primeng' | 40 | import { MultiSelectModule } from 'primeng/primeng' |
@@ -83,4 +89,5 @@ import { MultiSelectModule } from 'primeng/primeng' | |||
83 | 89 | ||
84 | providers: [] | 90 | providers: [] |
85 | }) | 91 | }) |
86 | export class MyAccountModule { } | 92 | export class MyAccountModule { |
93 | } | ||