mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Make AlbumArtists clickable in AlbumSongs view. Fixes #1627
This commit is contained in:
parent
9667f3cd48
commit
47f15ccbc3
1 changed files with 2 additions and 1 deletions
|
@ -27,6 +27,7 @@ import {
|
|||
useResourceRefresh,
|
||||
DateField,
|
||||
SizeField,
|
||||
ArtistLinkField,
|
||||
} from '../common'
|
||||
import config from '../config'
|
||||
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
|
||||
|
@ -110,7 +111,7 @@ const AlbumSongs = (props) => {
|
|||
showTrackNumbers={!isDesktop}
|
||||
/>
|
||||
),
|
||||
artist: isDesktop && <TextField source="artist" sortable={false} />,
|
||||
artist: isDesktop && <ArtistLinkField source="artist" />,
|
||||
duration: <DurationField source="duration" sortable={false} />,
|
||||
year: isDesktop && (
|
||||
<FunctionField
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue