Browse Source

Fix combinedtitle on null artist

master
jeffvli 3 years ago
committed by Jeff
parent
commit
720423bc4d
  1. 2
      src/components/viewtypes/ListViewTable.tsx

2
src/components/viewtypes/ListViewTable.tsx

@ -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}`}

Loading…
Cancel
Save