diff options
author | Chocobozzz <me@florianbigard.com> | 2020-08-11 16:50:00 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-08-11 16:50:00 +0200 |
commit | 94676e631c5045144da598fefbefaa3cfcaaeb0d (patch) | |
tree | ad722f1316ff81a026072938b010ca6549b40e52 /client/src/app/shared/shared-video-miniature | |
parent | f309a156a6201797b4eca19d090f37f2f0da403b (diff) | |
download | PeerTube-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.ts | 3 |
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 @@ | |||
1 | import { mapValues, pick } from 'lodash-es' | 1 | import { mapValues, pick } from 'lodash-es' |
2 | import { BytesPipe } from 'ngx-pipes' | ||
3 | import { Component, ElementRef, ViewChild } from '@angular/core' | 2 | import { Component, ElementRef, ViewChild } from '@angular/core' |
4 | import { AuthService, Notifier } from '@app/core' | 3 | import { AuthService, Notifier } from '@app/core' |
5 | import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' | 4 | import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' |
6 | import { I18n } from '@ngx-translate/i18n-polyfill' | 5 | import { I18n } from '@ngx-translate/i18n-polyfill' |
7 | import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' | 6 | import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' |
8 | import { NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main' | 7 | import { BytesPipe, NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main' |
9 | 8 | ||
10 | type DownloadType = 'video' | 'subtitles' | 9 | type DownloadType = 'video' | 'subtitles' |
11 | type FileMetadata = { [key: string]: { label: string, value: string }} | 10 | type FileMetadata = { [key: string]: { label: string, value: string }} |