diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-16 13:51:50 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-06-16 13:51:50 +0200 |
commit | af75e2d8df92d5d602e11353536ec6804a25f16f (patch) | |
tree | 74cef94a7aa8f730a6c7b96dc906ec71aa0c1b9e | |
parent | 6f787ea25de7f752f449eca9caf2ba9b431c2e52 (diff) | |
download | PeerTube-af75e2d8df92d5d602e11353536ec6804a25f16f.tar.gz PeerTube-af75e2d8df92d5d602e11353536ec6804a25f16f.tar.zst PeerTube-af75e2d8df92d5d602e11353536ec6804a25f16f.zip |
Correctly fix client build
-rw-r--r-- | client/src/app/+accounts/account-video-channels/account-video-channels.component.ts | 3 | ||||
-rw-r--r-- | client/src/app/search/search.component.ts | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts index 2e5c5aae2..eba1acfa1 100644 --- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts +++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts | |||
@@ -1,7 +1,7 @@ | |||
1 | import { from, Subject, Subscription } from 'rxjs' | 1 | import { from, Subject, Subscription } from 'rxjs' |
2 | import { concatMap, map, switchMap, tap } from 'rxjs/operators' | 2 | import { concatMap, map, switchMap, tap } from 'rxjs/operators' |
3 | import { Component, OnDestroy, OnInit } from '@angular/core' | 3 | import { Component, OnDestroy, OnInit } from '@angular/core' |
4 | import { UserService } from '@app/shared' | 4 | import { User, UserService } from '@app/shared' |
5 | import { Account } from '@app/shared/account/account.model' | 5 | import { Account } from '@app/shared/account/account.model' |
6 | import { AccountService } from '@app/shared/account/account.service' | 6 | import { AccountService } from '@app/shared/account/account.service' |
7 | import { ScreenService } from '@app/shared/misc/screen.service' | 7 | import { ScreenService } from '@app/shared/misc/screen.service' |
@@ -11,7 +11,6 @@ import { VideoChannelService } from '@app/shared/video-channel/video-channel.ser | |||
11 | import { VideoSortField } from '@app/shared/video/sort-field.type' | 11 | import { VideoSortField } from '@app/shared/video/sort-field.type' |
12 | import { Video } from '@app/shared/video/video.model' | 12 | import { Video } from '@app/shared/video/video.model' |
13 | import { VideoService } from '@app/shared/video/video.service' | 13 | import { VideoService } from '@app/shared/video/video.service' |
14 | import { User } from '@shared/models' | ||
15 | 14 | ||
16 | @Component({ | 15 | @Component({ |
17 | selector: 'my-account-video-channels', | 16 | selector: 'my-account-video-channels', |
diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index bed5de79e..6486085be 100644 --- a/client/src/app/search/search.component.ts +++ b/client/src/app/search/search.component.ts | |||
@@ -5,7 +5,7 @@ import { AuthService, Notifier, ServerService } from '@app/core' | |||
5 | import { HooksService } from '@app/core/plugins/hooks.service' | 5 | import { HooksService } from '@app/core/plugins/hooks.service' |
6 | import { AdvancedSearch } from '@app/search/advanced-search.model' | 6 | import { AdvancedSearch } from '@app/search/advanced-search.model' |
7 | import { SearchService } from '@app/search/search.service' | 7 | import { SearchService } from '@app/search/search.service' |
8 | import { UserService } from '@app/shared' | 8 | import { User, UserService } from '@app/shared' |
9 | import { immutableAssign } from '@app/shared/misc/utils' | 9 | import { immutableAssign } from '@app/shared/misc/utils' |
10 | import { ComponentPagination } from '@app/shared/rest/component-pagination.model' | 10 | import { ComponentPagination } from '@app/shared/rest/component-pagination.model' |
11 | import { VideoChannel } from '@app/shared/video-channel/video-channel.model' | 11 | import { VideoChannel } from '@app/shared/video-channel/video-channel.model' |
@@ -13,7 +13,7 @@ import { MiniatureDisplayOptions } from '@app/shared/video/video-miniature.compo | |||
13 | import { Video } from '@app/shared/video/video.model' | 13 | import { Video } from '@app/shared/video/video.model' |
14 | import { MetaService } from '@ngx-meta/core' | 14 | import { MetaService } from '@ngx-meta/core' |
15 | import { I18n } from '@ngx-translate/i18n-polyfill' | 15 | import { I18n } from '@ngx-translate/i18n-polyfill' |
16 | import { ServerConfig, User } from '@shared/models' | 16 | import { ServerConfig } from '@shared/models' |
17 | import { SearchTargetType } from '@shared/models/search/search-target-query.model' | 17 | import { SearchTargetType } from '@shared/models/search/search-target-query.model' |
18 | 18 | ||
19 | @Component({ | 19 | @Component({ |