fix(style): consistent style in artist credit label

This commit is contained in:
ArneBo 2025-03-29 13:02:48 +01:00
parent 117789358d
commit 832abf0e24
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const getRoute = (ac: ArtistCredit) => {
</script> </script>
<template> <template>
<Layout flex> <Layout flex gap-8>
<template <template
v-for="ac in props.artistCredit" v-for="ac in props.artistCredit"
:key="ac.artist.id" :key="ac.artist.id"
@ -43,11 +43,13 @@ const getRoute = (ac: ArtistCredit) => {
<i <i
v-else v-else
class="bi bi-person-circle" class="bi bi-person-circle"
style="font-size: 24px;"
/> />
</template> </template>
{{ ac.credit }} {{ ac.credit }}
</Pill> </Pill>
</router-link> </router-link>
<span>{{ ac.joinphrase }}</span>
</template> </template>
</Layout> </Layout>
</template> </template>