diff --git a/src/Ombi.Core/Engine/MusicSearchEngine.cs b/src/Ombi.Core/Engine/MusicSearchEngine.cs
index ebb396d99..abfbd2721 100644
--- a/src/Ombi.Core/Engine/MusicSearchEngine.cs
+++ b/src/Ombi.Core/Engine/MusicSearchEngine.cs
@@ -139,7 +139,8 @@ namespace Ombi.Core.Engine
Monitored = a.monitored,
Rating = a.ratings?.value ?? 0m,
ReleaseDate = a.releaseDate,
- Title = a.title
+ Title = a.title,
+ Disk = a.images?.FirstOrDefault(x => x.coverType.Equals("disc"))?.url
};
if (vm.Monitored)
{
diff --git a/src/Ombi/ClientApp/app/search/music/albumsearch.component.html b/src/Ombi/ClientApp/app/search/music/albumsearch.component.html
index ccd6b3260..b8e85da3e 100644
--- a/src/Ombi/ClientApp/app/search/music/albumsearch.component.html
+++ b/src/Ombi/ClientApp/app/search/music/albumsearch.component.html
@@ -1,80 +1,105 @@
-
-
-
-
-
-
-
-
-
-
-
- {{result.title}}
-
-
- {{result.artistName}}
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- Release Date: {{result.releaseDate | date:'yyyy-MM-dd'}}
+
+ Release Date: {{result.releaseDate | date:'yyyy-MM-dd'}}
+
+
+ {{result.rating}}/10
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
{{result.overview | truncate: 350 }}
-
+
+
+
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Ombi/ClientApp/app/search/music/albumsearch.component.scss b/src/Ombi/ClientApp/app/search/music/albumsearch.component.scss
new file mode 100644
index 000000000..799b4957f
--- /dev/null
+++ b/src/Ombi/ClientApp/app/search/music/albumsearch.component.scss
@@ -0,0 +1,3 @@
+.album-cover {
+ width:300px;
+}
diff --git a/src/Ombi/ClientApp/app/search/music/albumsearch.component.ts b/src/Ombi/ClientApp/app/search/music/albumsearch.component.ts
index 59314df84..388b3dec0 100644
--- a/src/Ombi/ClientApp/app/search/music/albumsearch.component.ts
+++ b/src/Ombi/ClientApp/app/search/music/albumsearch.component.ts
@@ -9,6 +9,7 @@ import { NotificationService, RequestService } from "../../services";
@Component({
selector: "album-search",
templateUrl: "./albumsearch.component.html",
+ styleUrls: ["./albumsearch.component.scss"],
})
export class AlbumSearchComponent {
diff --git a/src/Ombi/ClientApp/app/search/music/musicsearch.component.html b/src/Ombi/ClientApp/app/search/music/musicsearch.component.html
index e9dc8637e..867d7803e 100644
--- a/src/Ombi/ClientApp/app/search/music/musicsearch.component.html
+++ b/src/Ombi/ClientApp/app/search/music/musicsearch.component.html
@@ -7,39 +7,43 @@
-
+
-
+
diff --git a/src/Ombi/ClientApp/app/search/search.component.ts b/src/Ombi/ClientApp/app/search/search.component.ts
index 74221e71c..9347c87f1 100644
--- a/src/Ombi/ClientApp/app/search/search.component.ts
+++ b/src/Ombi/ClientApp/app/search/search.component.ts
@@ -21,9 +21,9 @@ export class SearchComponent implements OnInit {
public ngOnInit() {
this.settingsService.getLidarr().subscribe(x => this.musicEnabled = x.enabled);
- this.showMovie = true;
+ this.showMovie = false;
this.showTv = false;
- this.showMusic = false;
+ this.showMusic = true;
this.issuesService.getCategories().subscribe(x => this.issueCategories = x);
this.settingsService.getIssueSettings().subscribe(x => this.issuesEnabled = x.enabled);
}
diff --git a/src/Ombi/ClientApp/styles/Themes/plex.scss b/src/Ombi/ClientApp/styles/Themes/plex.scss
index 1475aef91..f965e72c7 100644
--- a/src/Ombi/ClientApp/styles/Themes/plex.scss
+++ b/src/Ombi/ClientApp/styles/Themes/plex.scss
@@ -345,11 +345,21 @@ button.list-group-item:focus {
height: 100%;
position: absolute;
}
+ .album-bg {
+ width: 92%;
+ height: 100%;
+ position: absolute;
+ }
.tint {
width: 100%;
height: 100%;
position: absolute;
}
+ .album-tint {
+ width: 92%;
+ height: 100%;
+ position: absolute;
+ }
table.table > thead > tr > th.active {
background-color: $primary-colour;
}
\ No newline at end of file