mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix(requests): handle when tvdbid is null (#657)
Co-authored-by: sct <sctsnipe@gmail.com>
This commit is contained in:
@@ -80,7 +80,9 @@ const TitleCard: React.FC<TitleCardProps> = ({
|
||||
showDetail ? 'scale-105' : ''
|
||||
}`}
|
||||
style={{
|
||||
backgroundImage: `url(//image.tmdb.org/t/p/w300_and_h450_face${image})`,
|
||||
backgroundImage: image
|
||||
? `url(//image.tmdb.org/t/p/w300_and_h450_face${image})`
|
||||
: `url('/images/overseerr_poster_not_found_logo_top.png')`,
|
||||
}}
|
||||
onMouseEnter={() => {
|
||||
if (!isTouch) {
|
||||
|
Reference in New Issue
Block a user