mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-07 04:42:58 -05:00
[web] Fix inability to start from a specific track of an album
In the album view, whatever the chosen track, the player always started from the first track of the album.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<template v-for="track in tracks" :key="track.itemId">
|
||||
<template v-for="(track, index) in tracks" :key="track.itemId">
|
||||
<div v-if="!track.isItem" class="mt-6 mb-5 py-2">
|
||||
<span
|
||||
:id="'index_' + track.groupKey"
|
||||
|
||||
Reference in New Issue
Block a user