Skip to content
Snippets Groups Projects
Commit e3c56767 authored by R En's avatar R En
Browse files

fix broken icons in playlist editor

parent 51e678a4
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