fix(front): wrong field on playlist card
This commit is contained in:
parent
6ab9d7c8ac
commit
3b1b707cff
|
@ -19,7 +19,7 @@ const covers = computed(() => playlist.album_covers
|
|||
)
|
||||
|
||||
const profileParams = computed(() => {
|
||||
const [username, domain] = playlist.user.full_username.split('@')
|
||||
const [username, domain] = playlist.actor.full_username.split('@')
|
||||
return { username, domain }
|
||||
})
|
||||
|
||||
|
@ -57,7 +57,7 @@ if (import.meta.env.PROD) {
|
|||
@click.stop="navigate('user')"
|
||||
class="funkwhale link"
|
||||
>
|
||||
{{ t('vui.by-user', playlist.user.full_username) }}
|
||||
{{ t('vui.by-user', playlist.actor.full_username) }}
|
||||
</a>
|
||||
|
||||
<template #footer>
|
||||
|
|
Loading…
Reference in New Issue