Skip to content
Snippets Groups Projects
Commit 5fb7c176 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '515-edit-playlist-icons' into 'develop'

Resolve "Cover not displayed in PL edit view"

Closes #515

See merge request funkwhale/funkwhale!404
parents 74f7a6e3 e3c56767
No related branches found
No related tags found
No related merge requests found
Fix broken icons in playlist editor (#515)
......@@ -53,7 +53,7 @@
<tr v-for="(plt, index) in plts" :key="plt.id">
<td class="left aligned">{{ plt.index + 1}}</td>
<td class="center aligned">
<img class="ui mini image" v-if="plt.track.album.cover" :src="plt.track.album.cover">
<img class="ui mini image" v-if="plt.track.album.cover.original" v-lazy="$store.getters['instance/absoluteUrl'](plt.track.album.cover.small_square_crop)">
<img class="ui mini image" v-else src="../../assets/audio/default-cover.png">
</td>
<td colspan="4">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment