aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-06-18 11:02:24 +0200
committerChocobozzz <me@florianbigard.com>2018-06-18 11:02:24 +0200
commit4d089429fe91ab7793b9b05010acb483d61345de (patch)
tree89157d387651f78165dabd47feec9c19f20d9f09 /client/src/app/+video-channels
parenta2788c698eae1d2bfeedb06a1c4c3fb82b5e30a8 (diff)
downloadPeerTube-4d089429fe91ab7793b9b05010acb483d61345de.tar.gz
PeerTube-4d089429fe91ab7793b9b05010acb483d61345de.tar.zst
PeerTube-4d089429fe91ab7793b9b05010acb483d61345de.zip
Remove uneeded rxjs-compat
Diffstat (limited to 'client/src/app/+video-channels')
-rw-r--r--client/src/app/+video-channels/video-channels.component.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts
index cd0463859..57c55d286 100644
--- a/client/src/app/+video-channels/video-channels.component.ts
+++ b/client/src/app/+video-channels/video-channels.component.ts
@@ -1,10 +1,10 @@
1import { Component, OnInit, OnDestroy } from '@angular/core' 1import { Component, OnDestroy, OnInit } from '@angular/core'
2import { ActivatedRoute } from '@angular/router' 2import { ActivatedRoute } from '@angular/router'
3import { VideoChannel } from '@app/shared/video-channel/video-channel.model' 3import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
4import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' 4import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
5import { RestExtractor } from '@app/shared' 5import { RestExtractor } from '@app/shared'
6import { catchError, switchMap, map, distinctUntilChanged } from 'rxjs/operators' 6import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators'
7import { Subscription } from 'rxjs/Subscription' 7import { Subscription } from 'rxjs'
8 8
9@Component({ 9@Component({
10 templateUrl: './video-channels.component.html', 10 templateUrl: './video-channels.component.html',