Add genre in artist bio

This commit is contained in:
Jason Chen 2022-01-17 13:50:16 -08:00
parent 050823c66d
commit 1f2b0a9a36

View file

@ -115,6 +115,10 @@
<h3>{{ data.attributes.isGroup ? "Formed" : "Born" }}</h3> <h3>{{ data.attributes.isGroup ? "Formed" : "Born" }}</h3>
{{ data.attributes.bornOrFormed }} {{ data.attributes.bornOrFormed }}
</div> </div>
<div v-if="data.attributes.genreNames">
<h3>Genre</h3>
{{ data.attributes.genreNames.join(', ') }}
</div>
</div> </div>
</div> </div>
</div> </div>