aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-miniature
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-08-11 16:50:00 +0200
committerChocobozzz <me@florianbigard.com>2020-08-11 16:50:00 +0200
commit94676e631c5045144da598fefbefaa3cfcaaeb0d (patch)
treead722f1316ff81a026072938b010ca6549b40e52 /client/src/app/shared/shared-video-miniature
parentf309a156a6201797b4eca19d090f37f2f0da403b (diff)
downloadPeerTube-94676e631c5045144da598fefbefaa3cfcaaeb0d.tar.gz
PeerTube-94676e631c5045144da598fefbefaa3cfcaaeb0d.tar.zst
PeerTube-94676e631c5045144da598fefbefaa3cfcaaeb0d.zip
Remove angular pipes module
Diffstat (limited to 'client/src/app/shared/shared-video-miniature')
-rw-r--r--client/src/app/shared/shared-video-miniature/video-download.component.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-video-miniature/video-download.component.ts b/client/src/app/shared/shared-video-miniature/video-download.component.ts
index 4fd06eacf..e3d6a1969 100644
--- a/client/src/app/shared/shared-video-miniature/video-download.component.ts
+++ b/client/src/app/shared/shared-video-miniature/video-download.component.ts
@@ -1,11 +1,10 @@
1import { mapValues, pick } from 'lodash-es' 1import { mapValues, pick } from 'lodash-es'
2import { BytesPipe } from 'ngx-pipes'
3import { Component, ElementRef, ViewChild } from '@angular/core' 2import { Component, ElementRef, ViewChild } from '@angular/core'
4import { AuthService, Notifier } from '@app/core' 3import { AuthService, Notifier } from '@app/core'
5import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' 4import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap'
6import { I18n } from '@ngx-translate/i18n-polyfill' 5import { I18n } from '@ngx-translate/i18n-polyfill'
7import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' 6import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models'
8import { NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main' 7import { BytesPipe, NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main'
9 8
10type DownloadType = 'video' | 'subtitles' 9type DownloadType = 'video' | 'subtitles'
11type FileMetadata = { [key: string]: { label: string, value: string }} 10type FileMetadata = { [key: string]: { label: string, value: string }}