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/+admin | |
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/+admin')
-rw-r--r-- | client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts b/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts index c29f69475..07e2e0ff3 100644 --- a/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts +++ b/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts | |||
@@ -1,10 +1,9 @@ | |||
1 | import { BytesPipe } from 'ngx-pipes' | ||
2 | import { SortMeta } from 'primeng/api' | 1 | import { SortMeta } from 'primeng/api' |
3 | import { Component, OnInit } from '@angular/core' | 2 | import { Component, OnInit } from '@angular/core' |
4 | import { ConfirmService, Notifier, RestPagination, RestTable, ServerService } from '@app/core' | 3 | import { ConfirmService, Notifier, RestPagination, RestTable, ServerService } from '@app/core' |
5 | import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage' | 4 | import { BytesPipe, RedundancyService } from '@app/shared/shared-main' |
6 | import { RedundancyService } from '@app/shared/shared-main' | ||
7 | import { I18n } from '@ngx-translate/i18n-polyfill' | 5 | import { I18n } from '@ngx-translate/i18n-polyfill' |
6 | import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage' | ||
8 | import { VideoRedundanciesTarget, VideoRedundancy } from '@shared/models' | 7 | import { VideoRedundanciesTarget, VideoRedundancy } from '@shared/models' |
9 | import { VideosRedundancyStats } from '@shared/models/server' | 8 | import { VideosRedundancyStats } from '@shared/models/server' |
10 | 9 | ||