Show AlbumArtist in Album table view. Fixes #1626

This commit is contained in:
Deluan 2022-09-29 16:47:40 -04:00
parent 8befe10ee6
commit e7fab8bb7b
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ const AlbumTableView = ({
const toggleableFields = useMemo(() => {
return {
artist: <ArtistLinkField source="artist" />,
artist: <ArtistLinkField source="albumArtist" />,
songCount: isDesktop && (
<NumberField source="songCount" sortByOrder={'DESC'} />
),