Merge pull request #2412 from tidusjar/feature/angular6-webpack4

Fixed linting !wip
This commit is contained in:
Jamie 2018-07-31 12:58:20 +01:00 committed by GitHub
commit dbe578c3fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 7 deletions

View file

@ -220,11 +220,11 @@ export class TvSearchComponent implements OnInit {
x.banner = this.defaultPoster; x.banner = this.defaultPoster;
} }
if (x.imdbId === null) { if (x.imdbId === null) {
x.imdbId = "https://www.tvmaze.com/shows/" + x.seriesId; x.imdbId = "https://www.tvmaze.com/shows/" + x.seriesId;
} else { } else {
x.imdbId = "http://www.imdb.com/title/" + x.imdbId + "/"; x.imdbId = "http://www.imdb.com/title/" + x.imdbId + "/";
} }
} }
private clearResults() { private clearResults() {

View file

@ -5,8 +5,7 @@ import { HttpClient } from "@angular/common/http";
import { Observable } from "rxjs"; import { Observable } from "rxjs";
import { TreeNode } from "primeng/primeng"; import { TreeNode } from "primeng/primeng";
import { IRequestEngineResult, FilterType } from "../interfaces"; import { FilterType, IChildRequests, IFilter, IMovieRequestModel, IMovieRequests, IMovieUpdateModel, IRequestEngineResult, IRequestsViewModel, ITvRequests, ITvUpdateModel, OrderType } from "../interfaces";
import { IChildRequests, IFilter, IMovieRequestModel, IMovieRequests, IMovieUpdateModel, IRequestsViewModel, ITvRequests, ITvUpdateModel, OrderType } from "../interfaces";
import { ITvRequestViewModel } from "../interfaces"; import { ITvRequestViewModel } from "../interfaces";
import { ServiceHelpers } from "./service.helpers"; import { ServiceHelpers } from "./service.helpers";