diff --git a/src/renderer/components/virtual-table/cells/combined-title-cell.tsx b/src/renderer/components/virtual-table/cells/combined-title-cell.tsx index f12eb5ad..255e5c4a 100644 --- a/src/renderer/components/virtual-table/cells/combined-title-cell.tsx +++ b/src/renderer/components/virtual-table/cells/combined-title-cell.tsx @@ -116,19 +116,30 @@ export const CombinedTitleCell = ({ value, rowIndex, node }: ICellRendererParams artists.map((artist: Artist | AlbumArtist, index: number) => ( {index > 0 ? ', ' : null} - - {artist.name} - + {artist.id ? ( + + {artist.name} + + ) : ( + + {artist.name} + + )} )) ) : (