cleaned up code

keep eye on ngx-bootstrap for when it removes rxjs-compat requirement
This commit is contained in:
piratefinn 2018-06-05 12:25:18 +01:00
parent 21e163fda2
commit 478429b3c9
5 changed files with 4 additions and 5 deletions

View file

@ -39,7 +39,7 @@
"ngx-bootstrap": "^2.0.5",
"ngx-pagination": "^3.1.1",
"rxjs": "6.2.0",
"rxjs-compat": "^6.0.0-rc.0",
"rxjs-compat": "^6.2.0",
"ts-helpers": "1.1.2",
"webpack-dev-server": "^3.1.4",
"zone.js": "0.8.26"

View file

@ -1,7 +1,6 @@
import { map } from 'rxjs/operators';
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs/Rx';
import { environment } from '../../environments/environment';

View file

@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { ApiService } from './api-service';
import { Observable } from 'rxjs/Rx';
import { Observable } from 'rxjs';
@Injectable()
export class CustPiesService {

View file

@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { ApiService } from './api-service';
import { Observable } from 'rxjs/Rx';
import { Observable } from 'rxjs';
@Injectable()
export class CustSnippetsService {

View file

@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { ApiService } from './api-service';
import { Observable } from 'rxjs/Rx';
import { Observable } from 'rxjs';
@Injectable()
export class OrgSnippetsService {