diff --git a/src/Ombi/ClientApp/app/search/tvsearch.component.html b/src/Ombi/ClientApp/app/search/tvsearch.component.html index 994c2f32b..647310abf 100644 --- a/src/Ombi/ClientApp/app/search/tvsearch.component.html +++ b/src/Ombi/ClientApp/app/search/tvsearch.component.html @@ -85,10 +85,10 @@ diff --git a/src/Ombi/ClientApp/app/search/tvsearch.component.ts b/src/Ombi/ClientApp/app/search/tvsearch.component.ts index 1043ccbfb..d3cfe2e70 100644 --- a/src/Ombi/ClientApp/app/search/tvsearch.component.ts +++ b/src/Ombi/ClientApp/app/search/tvsearch.component.ts @@ -49,6 +49,7 @@ export class TvSearchComponent implements OnInit, OnDestroy { }); } public openClosestTab(el: any) { + el.preventDefault(); const rowclass = "undefined"; el = el.toElement; while (el.className !== rowclass) { @@ -162,17 +163,20 @@ export class TvSearchComponent implements OnInit, OnDestroy { }); } - public allSeasons(searchResult: ISearchTvResult) { + public allSeasons(searchResult: ISearchTvResult, event: any) { + event.preventDefault(); searchResult.requestAll = true; this.request(searchResult); } - public firstSeason(searchResult: ISearchTvResult) { + public firstSeason(searchResult: ISearchTvResult, event: any) { + event.preventDefault(); searchResult.firstSeason = true; this.request(searchResult); } - public latestSeason(searchResult: ISearchTvResult) { + public latestSeason(searchResult: ISearchTvResult, event: any) { + event.preventDefault(); searchResult.latestSeason = true; this.request(searchResult); } diff --git a/src/Ombi/ClientApp/app/settings/notifications/pushbullet.component.html b/src/Ombi/ClientApp/app/settings/notifications/pushbullet.component.html index 5c40afbe5..242c7e674 100644 --- a/src/Ombi/ClientApp/app/settings/notifications/pushbullet.component.html +++ b/src/Ombi/ClientApp/app/settings/notifications/pushbullet.component.html @@ -13,7 +13,7 @@ - You can find this here: https://www.pushbullet.com/#settings/account + You can find this here: https://www.pushbullet.com/#settings/account