Show AlbumArtist in Album table view. Fixes #1626

This commit is contained in:
Deluan 2022-09-29 16:47:40 -04:00 committed by Joe Stump
parent 305cd0a781
commit e857eaa3c2
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

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'} />
),