mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
Fixed: Prevent JS errors when statistics is null
This commit is contained in:
parent
36b2942cef
commit
a9e59b7798
3 changed files with 3 additions and 3 deletions
|
@ -138,7 +138,7 @@ class AlbumDetails extends Component {
|
||||||
title,
|
title,
|
||||||
disambiguation,
|
disambiguation,
|
||||||
albumType,
|
albumType,
|
||||||
statistics,
|
statistics = {},
|
||||||
monitored,
|
monitored,
|
||||||
releaseDate,
|
releaseDate,
|
||||||
ratings,
|
ratings,
|
||||||
|
|
|
@ -61,7 +61,7 @@ class ArtistIndexBanner extends Component {
|
||||||
status,
|
status,
|
||||||
foreignArtistId,
|
foreignArtistId,
|
||||||
nextAiring,
|
nextAiring,
|
||||||
statistics,
|
statistics = {},
|
||||||
images,
|
images,
|
||||||
bannerWidth,
|
bannerWidth,
|
||||||
bannerHeight,
|
bannerHeight,
|
||||||
|
|
|
@ -61,7 +61,7 @@ class ArtistIndexPoster extends Component {
|
||||||
foreignArtistId,
|
foreignArtistId,
|
||||||
status,
|
status,
|
||||||
nextAiring,
|
nextAiring,
|
||||||
statistics,
|
statistics = {},
|
||||||
images,
|
images,
|
||||||
posterWidth,
|
posterWidth,
|
||||||
posterHeight,
|
posterHeight,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue