Fix combinedtitle on null artist

This commit is contained in:
jeffvli
2021-12-01 23:59:56 -08:00
committed by Jeff
parent 0ed923e12f
commit 720423bc4d

View File

@@ -746,7 +746,7 @@ const ListViewTable = ({
width: '100%',
}}
>
{rowData.artist.map((artist: GenericItem, i: number) => (
{(rowData.artist || []).map((artist: GenericItem, i: number) => (
<>
<SecondaryTextWrapper
key={`delim-${artist.id}`}