Fix JS console warning
This commit is contained in:
parent
dc0ec32dbf
commit
a7017e4bb0
1 changed files with 2 additions and 2 deletions
|
|
@ -253,7 +253,7 @@ const AlbumDetails = (props) => {
|
||||||
<Typography component={'h6'} className={classes.recordArtist}>
|
<Typography component={'h6'} className={classes.recordArtist}>
|
||||||
<ArtistLinkField record={record} />
|
<ArtistLinkField record={record} />
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography component={'p'} className={classes.recordMeta}>
|
<Typography component={'div'} className={classes.recordMeta}>
|
||||||
<Details />
|
<Details />
|
||||||
</Typography>
|
</Typography>
|
||||||
{config.enableStarRating && (
|
{config.enableStarRating && (
|
||||||
|
|
@ -271,7 +271,7 @@ const AlbumDetails = (props) => {
|
||||||
<Typography component={'p'}>{record.genre}</Typography>
|
<Typography component={'p'}>{record.genre}</Typography>
|
||||||
)}
|
)}
|
||||||
{isDesktop && (
|
{isDesktop && (
|
||||||
<Typography component={'p'} className={classes.recordMeta}>
|
<Typography component={'div'} className={classes.recordMeta}>
|
||||||
<AlbumExternalLinks className={classes.externalLinks} />
|
<AlbumExternalLinks className={classes.externalLinks} />
|
||||||
</Typography>
|
</Typography>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue