From 3b1b707cff34c905bafd69c2efca97e06c98a9c2 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Fri, 21 Feb 2025 10:16:38 +0100 Subject: [PATCH] fix(front): wrong field on playlist card --- front/src/components/playlist/Card.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/components/playlist/Card.vue b/front/src/components/playlist/Card.vue index 2d9095141..74c6844f7 100644 --- a/front/src/components/playlist/Card.vue +++ b/front/src/components/playlist/Card.vue @@ -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) }}