diff --git a/front/src/components/common/UserLink.vue b/front/src/components/common/UserLink.vue
index 194fdbe08..1631cb93a 100644
--- a/front/src/components/common/UserLink.vue
+++ b/front/src/components/common/UserLink.vue
@@ -1,11 +1,14 @@
-
- {{ user.username[0]}}
- @{{ user.username }}
+
+
+ {{ user.username[0]}}
+
+
+ @{{ user.username }}
@@ -13,7 +16,10 @@
import {hashCode, intToRGB} from '@/utils/color'
export default {
- props: ['user'],
+ props: {
+ user: {required: true},
+ avatar: {type: Boolean, default: true}
+ },
computed: {
userColor () {
return intToRGB(hashCode(this.user.username + String(this.user.id)))
diff --git a/front/src/components/playlists/Card.vue b/front/src/components/playlists/Card.vue
index 081624c25..4456ce48f 100644
--- a/front/src/components/playlists/Card.vue
+++ b/front/src/components/playlists/Card.vue
@@ -13,7 +13,7 @@