mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
Fix Album & Artist shuffle bug
This commit is contained in:
parent
85b7f97289
commit
ac16429e16
2 changed files with 6 additions and 2 deletions
|
@ -27,7 +27,9 @@
|
|||
</span>
|
||||
|
||||
<song-list-controls
|
||||
v-show="!isPhone || showingControls"
|
||||
v-show="state.songs.length && (!isPhone || showingControls)"
|
||||
@shuffleAll="shuffleAll"
|
||||
@shuffleSelected="shuffleSelected"
|
||||
:config="songListControlConfig"
|
||||
:selectedSongs="selectedSongs"
|
||||
/>
|
||||
|
|
|
@ -26,7 +26,9 @@
|
|||
</span>
|
||||
|
||||
<song-list-controls
|
||||
v-show="!isPhone || showingControls"
|
||||
v-show="state.songs.length && (!isPhone || showingControls)"
|
||||
@shuffleAll="shuffleAll"
|
||||
@shuffleSelected="shuffleSelected"
|
||||
:config="songListControlConfig"
|
||||
:selectedSongs="selectedSongs"
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue