Issue #37 y #36 Agregar a la lista

This commit is contained in:
Daniel Cortes
2020-07-12 16:06:38 -04:00
parent ed1c25a41f
commit 61bd20ea27
15 changed files with 285 additions and 11 deletions

View File

@@ -70,7 +70,10 @@ const Artist = (props) => {
if (artist){
return <Entity title={artist.name}
subtitle={[artist.type, artist.country].filter(Boolean).join(' - ')}
tags={artist.tags.map((tag) => (tag.name))}/>
tags={artist.tags.map((tag) => (tag.name))}
type={'artist'}
entity={artist.id}
/>
}else {
return null;
}