redesign the album bio component

This commit is contained in:
geoffrey45
2022-07-10 21:51:29 +03:00
parent 4688665156
commit cdab85912f
8 changed files with 63 additions and 30 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ function updateQueue(track: Track) {
function getTracks() {
if (props.on_album_page) {
let tracks = props.tracks.map((track, index) => {
let tracks = props.tracks.map((track) => {
track.index = track.tracknumber;
return track;
});