From 626675f233da005ca39fa9bf8af24991bcb89034 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Mon, 6 Jan 2020 10:59:39 +0100
Subject: [PATCH] Fixed broken default cover on playlist card

---
 front/src/components/playlists/Card.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/front/src/components/playlists/Card.vue b/front/src/components/playlists/Card.vue
index 4456ce48..1d4b4ad2 100644
--- a/front/src/components/playlists/Card.vue
+++ b/front/src/components/playlists/Card.vue
@@ -39,7 +39,7 @@ export default {
       }).slice(0, 4)
       while (urls.length < 4) {
         urls.push(
-          '../../../assets/audio/default-cover.png'
+          require('../../assets/audio/default-cover.png')
         )
       }
       return urls
-- 
GitLab