aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/search/search.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-16 13:51:50 +0200
committerChocobozzz <me@florianbigard.com>2020-06-16 13:51:50 +0200
commitaf75e2d8df92d5d602e11353536ec6804a25f16f (patch)
tree74cef94a7aa8f730a6c7b96dc906ec71aa0c1b9e /client/src/app/search/search.component.ts
parent6f787ea25de7f752f449eca9caf2ba9b431c2e52 (diff)
downloadPeerTube-af75e2d8df92d5d602e11353536ec6804a25f16f.tar.gz
PeerTube-af75e2d8df92d5d602e11353536ec6804a25f16f.tar.zst
PeerTube-af75e2d8df92d5d602e11353536ec6804a25f16f.zip
Correctly fix client build
Diffstat (limited to 'client/src/app/search/search.component.ts')
-rw-r--r--client/src/app/search/search.component.ts4
1 files changed, 2 insertions, 2 deletions
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'
5import { HooksService } from '@app/core/plugins/hooks.service' 5import { HooksService } from '@app/core/plugins/hooks.service'
6import { AdvancedSearch } from '@app/search/advanced-search.model' 6import { AdvancedSearch } from '@app/search/advanced-search.model'
7import { SearchService } from '@app/search/search.service' 7import { SearchService } from '@app/search/search.service'
8import { UserService } from '@app/shared' 8import { User, UserService } from '@app/shared'
9import { immutableAssign } from '@app/shared/misc/utils' 9import { immutableAssign } from '@app/shared/misc/utils'
10import { ComponentPagination } from '@app/shared/rest/component-pagination.model' 10import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
11import { VideoChannel } from '@app/shared/video-channel/video-channel.model' 11import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
@@ -13,7 +13,7 @@ import { MiniatureDisplayOptions } from '@app/shared/video/video-miniature.compo
13import { Video } from '@app/shared/video/video.model' 13import { Video } from '@app/shared/video/video.model'
14import { MetaService } from '@ngx-meta/core' 14import { MetaService } from '@ngx-meta/core'
15import { I18n } from '@ngx-translate/i18n-polyfill' 15import { I18n } from '@ngx-translate/i18n-polyfill'
16import { ServerConfig, User } from '@shared/models' 16import { ServerConfig } from '@shared/models'
17import { SearchTargetType } from '@shared/models/search/search-target-query.model' 17import { SearchTargetType } from '@shared/models/search/search-target-query.model'
18 18
19@Component({ 19@Component({