aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows
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/+admin/follows
parentf309a156a6201797b4eca19d090f37f2f0da403b (diff)
downloadPeerTube-94676e631c5045144da598fefbefaa3cfcaaeb0d.tar.gz
PeerTube-94676e631c5045144da598fefbefaa3cfcaaeb0d.tar.zst
PeerTube-94676e631c5045144da598fefbefaa3cfcaaeb0d.zip
Remove angular pipes module
Diffstat (limited to 'client/src/app/+admin/follows')
-rw-r--r--client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts5
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 @@
1import { BytesPipe } from 'ngx-pipes'
2import { SortMeta } from 'primeng/api' 1import { SortMeta } from 'primeng/api'
3import { Component, OnInit } from '@angular/core' 2import { Component, OnInit } from '@angular/core'
4import { ConfirmService, Notifier, RestPagination, RestTable, ServerService } from '@app/core' 3import { ConfirmService, Notifier, RestPagination, RestTable, ServerService } from '@app/core'
5import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage' 4import { BytesPipe, RedundancyService } from '@app/shared/shared-main'
6import { RedundancyService } from '@app/shared/shared-main'
7import { I18n } from '@ngx-translate/i18n-polyfill' 5import { I18n } from '@ngx-translate/i18n-polyfill'
6import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage'
8import { VideoRedundanciesTarget, VideoRedundancy } from '@shared/models' 7import { VideoRedundanciesTarget, VideoRedundancy } from '@shared/models'
9import { VideosRedundancyStats } from '@shared/models/server' 8import { VideosRedundancyStats } from '@shared/models/server'
10 9