Fix adding same track multiple times

This commit is contained in:
wvffle 2022-11-04 19:34:11 +00:00 committed by JuniorJPDJ
parent f705509fe5
commit b7355c9c95
3 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Fix adding same track multiple times (#1933)

View File

@ -455,7 +455,6 @@ const coverType = ref(CoverType.COVER_ART)
:index="index"
:source="item"
:class="[...classList, currentIndex === index && 'active']"
key-field="key"
@play="play"
@remove="dequeue"
/>

View File

@ -164,6 +164,7 @@ defineExpose({
<recycle-scroller
ref="virtualList"
class="virtual-list drag-container"
key-field="key"
:items="list"
:item-size="size"
@mousedown="onMousedown"