coverart se puede abrir en nueva tab

This commit is contained in:
Daniel Cortes
2020-06-17 07:33:02 -04:00
parent 2116c6ece9
commit 3bf02a1b2c
4 changed files with 14 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ const Disc = (props) => {
return <Entity title={disc.title}
subtitle={subtitle}
buttonText='Agregar a mi lista'
cover={<CoverArt disc={disc}/>}/>
cover={<CoverArt disc={disc} popup={true}/>}/>
}else {
return <Fragment></Fragment>
}

View File

@@ -53,7 +53,7 @@ const Release = (props) => {
return <Entity title={release.title}
subtitle={subtitle}
buttonText='Agregar a mi lista'
cover={<CoverArt release={release}/>}/>
cover={<CoverArt release={release} popup={true}/>}/>
}else {
return <Fragment></Fragment>
}