Skip to content
Snippets Groups Projects
Commit 5b023b44 authored by Arne Bollinger's avatar Arne Bollinger
Browse files

Add support for multiple artists per album

parent 7eb2a85e
No related branches found
No related tags found
No related merge requests found
Pipeline #36589 failed
<script setup lang="ts">
"your-package": "file:/packages/your-local-package""your-package": "file:/packages/your-local-package"<script setup lang="ts">
import { FwCard, FwPlayButton, FwOptionsButton } from '~/components'
import { useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
......@@ -30,10 +30,13 @@ if (import.meta.env.PROD) {
<fw-play-button @play="play(album)" />
<a
v-for="ac in album.artistCredit"
:key="ac.artist.id"
@click.stop="navigate('artist')"
class="funkwhale link"
>
{{ album.artist.name }}
{{ ac.credit ?? t('components.Queue.meta.unknownArtist') }}
{{ ac.joinphrase }}
</a>
<template #footer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment