diff --git a/src/Ombi/ClientApp/app/search/search.component.html b/src/Ombi/ClientApp/app/search/search.component.html index e82457259..3226360bc 100644 --- a/src/Ombi/ClientApp/app/search/search.component.html +++ b/src/Ombi/ClientApp/app/search/search.component.html @@ -7,11 +7,11 @@
diff --git a/src/Ombi/ClientApp/app/search/search.component.ts b/src/Ombi/ClientApp/app/search/search.component.ts index 8f3a2d5e5..312847b74 100644 --- a/src/Ombi/ClientApp/app/search/search.component.ts +++ b/src/Ombi/ClientApp/app/search/search.component.ts @@ -11,8 +11,13 @@ export class SearchComponent implements OnInit { this.showTv = false; } - public selectTab() { - this.showMovie = !this.showMovie; - this.showTv = !this.showTv; + public selectMovieTab() { + this.showMovie = true; + this.showTv = false; + } + + public selectTvTab() { + this.showMovie = true; + this.showTv = false; } } diff --git a/src/Ombi/Ombi.csproj b/src/Ombi/Ombi.csproj index 3e5a696a3..e3d8ab89f 100644 --- a/src/Ombi/Ombi.csproj +++ b/src/Ombi/Ombi.csproj @@ -32,23 +32,7 @@