fix(front): inline artist credit list
This commit is contained in:
parent
f502cd25eb
commit
0408668a4a
|
@ -49,19 +49,20 @@ const imageUrl = computed(() => props.album.cover?.urls.original
|
||||||
:album="album"
|
:album="album"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
<Layout flex>
|
||||||
<template
|
<template
|
||||||
v-for="ac in album.artist_credit"
|
v-for="ac in album.artist_credit"
|
||||||
:key="ac.artist.id"
|
:key="ac.artist.id"
|
||||||
>
|
|
||||||
<Link
|
|
||||||
align-text="start"
|
|
||||||
:to="{ name: 'library.artists.detail', params: { id: ac.artist.id }}"
|
|
||||||
>
|
>
|
||||||
{{ ac.credit ?? t('components.Queue.meta.unknownArtist') }}
|
<Link
|
||||||
</Link>
|
align-text="start"
|
||||||
<span>{{ ac.joinphrase }}</span>
|
:to="{ name: 'library.artists.detail', params: { id: ac.artist.id }}"
|
||||||
</template>
|
>
|
||||||
|
{{ ac.credit ?? t('components.Queue.meta.unknownArtist') }}
|
||||||
|
</Link>
|
||||||
|
<span>{{ ac.joinphrase }}</span>
|
||||||
|
</template>
|
||||||
|
</Layout>
|
||||||
|
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<span v-if="album.release_date">
|
<span v-if="album.release_date">
|
||||||
|
|
Loading…
Reference in New Issue