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.requestable = true;
|
||||||
this.monitored = false;
|
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 { ImageService, SearchV2Service, RequestService, MessageService } from "../../../services";
|
||||||
import { ActivatedRoute } from "@angular/router";
|
import { ActivatedRoute } from "@angular/router";
|
||||||
import { DomSanitizer } from "@angular/platform-browser";
|
import { DomSanitizer } from "@angular/platform-browser";
|
||||||
|
@ -12,6 +12,7 @@ import { IAlbumSearchResult, IReleaseGroups } from "../../../interfaces/IMusicSe
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: "./album-details.component.html",
|
templateUrl: "./album-details.component.html",
|
||||||
styleUrls: ["../../media-details.component.scss"],
|
styleUrls: ["../../media-details.component.scss"],
|
||||||
|
encapsulation: ViewEncapsulation.None
|
||||||
})
|
})
|
||||||
export class AlbumDetailsComponent {
|
export class AlbumDetailsComponent {
|
||||||
private albumId: string;
|
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 { ImageService, SearchV2Service, RequestService, MessageService } from "../../../services";
|
||||||
import { ActivatedRoute } from "@angular/router";
|
import { ActivatedRoute } from "@angular/router";
|
||||||
import { DomSanitizer } from "@angular/platform-browser";
|
import { DomSanitizer } from "@angular/platform-browser";
|
||||||
|
@ -12,6 +12,7 @@ import { IArtistSearchResult, IReleaseGroups } from "../../../interfaces/IMusicS
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: "./artist-details.component.html",
|
templateUrl: "./artist-details.component.html",
|
||||||
styleUrls: ["../../media-details.component.scss"],
|
styleUrls: ["../../media-details.component.scss"],
|
||||||
|
encapsulation: ViewEncapsulation.None
|
||||||
})
|
})
|
||||||
export class ArtistDetailsComponent {
|
export class ArtistDetailsComponent {
|
||||||
private artistId: string;
|
private artistId: string;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue