From 4d089429fe91ab7793b9b05010acb483d61345de Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 18 Jun 2018 11:02:24 +0200 Subject: Remove uneeded rxjs-compat --- client/src/app/+video-channels/video-channels.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/src/app/+video-channels') 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 @@ -import { Component, OnInit, OnDestroy } from '@angular/core' +import { Component, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute } from '@angular/router' import { VideoChannel } from '@app/shared/video-channel/video-channel.model' import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' import { RestExtractor } from '@app/shared' -import { catchError, switchMap, map, distinctUntilChanged } from 'rxjs/operators' -import { Subscription } from 'rxjs/Subscription' +import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators' +import { Subscription } from 'rxjs' @Component({ templateUrl: './video-channels.component.html', -- cgit v1.2.3