group album tracks as they appear (in queue)

+ move handling disc logic to the album store
This commit is contained in:
geoffrey45
2022-08-02 23:46:13 +03:00
parent 3dcb8ed2ef
commit ef2926f18f
5 changed files with 39 additions and 34 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<template>
<div class="album-tracks rounded">
<div v-for="(disc, key) in discs" class="album-disc">
<SongList :key="key" :tracks="disc" :on_album_page="true" :c="key" />
<SongList :key="key" :tracks="disc" :on_album_page="true" :disc="key" />
</div>
</div>
</template>