Fix Album & Artist shuffle bug

This commit is contained in:
An Phan 2016-11-26 10:38:36 +07:00
parent 85b7f97289
commit ac16429e16
No known key found for this signature in database
GPG key ID: 05536BB4BCDC02A2
2 changed files with 6 additions and 2 deletions

View file

@ -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"
/>

View file

@ -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"
/>