mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Fixed the view issue with refresh. Removed debug code
This commit is contained in:
parent
7db8cbbff3
commit
988668651f
3 changed files with 4 additions and 5 deletions
|
@ -82,9 +82,6 @@ export class DiscoverCardComponent implements OnInit {
|
|||
this.requestable = true;
|
||||
this.monitored = false;
|
||||
}
|
||||
console.log(this.result.title);
|
||||
console.log(this.requestable);
|
||||
console.log(this.monitored);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Component } from "@angular/core";
|
||||
import { Component, ViewEncapsulation } from "@angular/core";
|
||||
import { ImageService, SearchV2Service, RequestService, MessageService } from "../../../services";
|
||||
import { ActivatedRoute } from "@angular/router";
|
||||
import { DomSanitizer } from "@angular/platform-browser";
|
||||
|
@ -12,6 +12,7 @@ import { IAlbumSearchResult, IReleaseGroups } from "../../../interfaces/IMusicSe
|
|||
@Component({
|
||||
templateUrl: "./album-details.component.html",
|
||||
styleUrls: ["../../media-details.component.scss"],
|
||||
encapsulation: ViewEncapsulation.None
|
||||
})
|
||||
export class AlbumDetailsComponent {
|
||||
private albumId: string;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Component } from "@angular/core";
|
||||
import { Component, ViewEncapsulation } from "@angular/core";
|
||||
import { ImageService, SearchV2Service, RequestService, MessageService } from "../../../services";
|
||||
import { ActivatedRoute } from "@angular/router";
|
||||
import { DomSanitizer } from "@angular/platform-browser";
|
||||
|
@ -12,6 +12,7 @@ import { IArtistSearchResult, IReleaseGroups } from "../../../interfaces/IMusicS
|
|||
@Component({
|
||||
templateUrl: "./artist-details.component.html",
|
||||
styleUrls: ["../../media-details.component.scss"],
|
||||
encapsulation: ViewEncapsulation.None
|
||||
})
|
||||
export class ArtistDetailsComponent {
|
||||
private artistId: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue