diff --git a/front/src/components/album/Card.vue b/front/src/components/album/Card.vue
index be9799608..f255a2b00 100644
--- a/front/src/components/album/Card.vue
+++ b/front/src/components/album/Card.vue
@@ -1,5 +1,7 @@
-
-
-
-
+
{{ momentFormat(new Date(album.release_date), 'Y') }}
diff --git a/front/src/components/artist/Card.vue b/front/src/components/artist/Card.vue
index 437a835b3..e2edc29bb 100644
--- a/front/src/components/artist/Card.vue
+++ b/front/src/components/artist/Card.vue
@@ -4,6 +4,7 @@ import { computed } from 'vue'
import { useStore } from '~/store'
import { useI18n } from 'vue-i18n'
+import PlayButton from '~/components/audio/PlayButton.vue'
import TagsList from '~/components/tags/List.vue'
import Card from '~/components/ui/Card.vue'
@@ -42,15 +43,12 @@ const imageUrl = computed(() => cover.value?.urls.original
- /front/src/components/artist/Card.vue
-
-
cover.value?.urls.original
:tags="artist.tags"
/>
-
-
- {{ t('components.audio.artist.Card.meta.tracks', artist.tracks_count) }}
-
-
- {{ t('components.audio.artist.Card.meta.episodes', artist.tracks_count) }}
-
+
+
+
+
+ {{ t('components.audio.artist.Card.meta.tracks', artist.tracks_count) }}
+
+
+ {{ t('components.audio.artist.Card.meta.episodes', artist.tracks_count) }}
+
+
+
-
- Go to artist
-
-