mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 19:59:17 +02:00
Merge branch '327-versatile-front' into 'develop'
Resolve "Make it possible to point the front-end to custom API urls" Closes #327 See merge request funkwhale/funkwhale!269
This commit is contained in:
commit
7d60155b0f
25 changed files with 251 additions and 101 deletions
|
@ -120,7 +120,7 @@
|
|||
<tr @click="$store.dispatch('queue/currentIndex', index)" v-for="(track, index) in queue.tracks" :key="index" :class="[{'active': index === queue.currentIndex}]">
|
||||
<td class="right aligned">{{ index + 1}}</td>
|
||||
<td class="center aligned">
|
||||
<img class="ui mini image" v-if="track.album.cover" :src="backend.absoluteUrl(track.album.cover)">
|
||||
<img class="ui mini image" v-if="track.album.cover" :src="$store.getters['instance/absoluteUrl'](track.album.cover)">
|
||||
<img class="ui mini image" v-else src="../assets/audio/default-cover.png">
|
||||
</td>
|
||||
<td colspan="4">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue