diff --git a/front/src/components/artist/Card.vue b/front/src/components/artist/Card.vue index 3c99cdf68..d467593d1 100644 --- a/front/src/components/artist/Card.vue +++ b/front/src/components/artist/Card.vue @@ -21,6 +21,9 @@ const props = defineProps() const { artist } = props +if ('albums' in artist && Array.isArray(artist.albums)) { + albums.value = artist.albums +}