mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
Fixed the issue with firefox #1544
This commit is contained in:
parent
8ac5bf7829
commit
00b1873dac
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ namespace Ombi.Notifications
|
|||
Overview = req.ParentRequest.Overview;
|
||||
Year = req.ParentRequest.ReleaseDate.Year.ToString();
|
||||
PosterImage = req.RequestType == RequestType.Movie ?
|
||||
$"https://image.tmdb.org/t/p/w300/{req.ParentRequest.PosterPath}" : req.ParentRequest.PosterPath;
|
||||
$"https://image.tmdb.org/t/p/w300{req.ParentRequest.PosterPath}" : req.ParentRequest.PosterPath;
|
||||
// DO Episode and Season Lists
|
||||
}
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ export class TvRequestsComponent implements OnInit {
|
|||
}
|
||||
public openClosestTab(el: any) {
|
||||
const rowclass = "undefined";
|
||||
el = el.toElement;
|
||||
el = el.toElement || el.relatedTarget || el.target;
|
||||
while (el.className !== rowclass) {
|
||||
// Increment the loop to the parent node until we find the row we need
|
||||
el = el.parentNode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue