Add back Artist column header to Album List View. Fixes #363
This commit is contained in:
parent
0292a334fe
commit
0ca70b1e4d
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ const AlbumListView = ({ hasShow, hasEdit, hasList, ...rest }) => {
|
||||||
) : (
|
) : (
|
||||||
<AlbumDatagrid expand={<AlbumDetails />} rowClick={'show'} {...rest}>
|
<AlbumDatagrid expand={<AlbumDetails />} rowClick={'show'} {...rest}>
|
||||||
<TextField source="name" />
|
<TextField source="name" />
|
||||||
<ArtistLinkField />
|
<ArtistLinkField source="artist"/>
|
||||||
{isDesktop && <NumberField source="songCount" sortByOrder={'DESC'} />}
|
{isDesktop && <NumberField source="songCount" sortByOrder={'DESC'} />}
|
||||||
{isDesktop && <NumberField source="playCount" sortByOrder={'DESC'} />}
|
{isDesktop && <NumberField source="playCount" sortByOrder={'DESC'} />}
|
||||||
<RangeField source={'year'} sortBy={'maxYear'} sortByOrder={'DESC'} />
|
<RangeField source={'year'} sortBy={'maxYear'} sortByOrder={'DESC'} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue