diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-18 11:02:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-18 11:02:24 +0200 |
commit | 4d089429fe91ab7793b9b05010acb483d61345de (patch) | |
tree | 89157d387651f78165dabd47feec9c19f20d9f09 /client/src/app/+video-channels | |
parent | a2788c698eae1d2bfeedb06a1c4c3fb82b5e30a8 (diff) | |
download | PeerTube-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.ts | 6 |
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 @@ | |||
1 | import { Component, OnInit, OnDestroy } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute } from '@angular/router' | 2 | import { ActivatedRoute } from '@angular/router' |
3 | import { VideoChannel } from '@app/shared/video-channel/video-channel.model' | 3 | import { VideoChannel } from '@app/shared/video-channel/video-channel.model' |
4 | import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' | 4 | import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' |
5 | import { RestExtractor } from '@app/shared' | 5 | import { RestExtractor } from '@app/shared' |
6 | import { catchError, switchMap, map, distinctUntilChanged } from 'rxjs/operators' | 6 | import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators' |
7 | import { Subscription } from 'rxjs/Subscription' | 7 | import { Subscription } from 'rxjs' |
8 | 8 | ||
9 | @Component({ | 9 | @Component({ |
10 | templateUrl: './video-channels.component.html', | 10 | templateUrl: './video-channels.component.html', |