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