fix: rename album field to name in AlbumInfo component. fixes #4883
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
9d95ef7b3f
commit
fd4a04339e
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ const AlbumInfo = (props) => {
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
const record = useRecordContext(props)
|
const record = useRecordContext(props)
|
||||||
const data = {
|
const data = {
|
||||||
album: <TextField source={'name'} />,
|
name: <TextField source={'name'} />,
|
||||||
libraryName: <TextField source="libraryName" />,
|
libraryName: <TextField source="libraryName" />,
|
||||||
albumArtist: (
|
albumArtist: (
|
||||||
<ArtistLinkField source="albumArtist" record={record} limit={Infinity} />
|
<ArtistLinkField source="albumArtist" record={record} limit={Infinity} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue