Fix Artist and Album components

This commit is contained in:
An Phan 2016-11-28 11:44:56 +07:00
parent 4b96dad5a3
commit a209c93a5b
No known key found for this signature in database
GPG key ID: 05536BB4BCDC02A2
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@
</span>
<song-list-controls
v-show="state.songs.length && (!isPhone || showingControls)"
v-show="album.songs.length && (!isPhone || showingControls)"
@shuffleAll="shuffleAll"
@shuffleSelected="shuffleSelected"
:config="songListControlConfig"

View file

@ -26,7 +26,7 @@
</span>
<song-list-controls
v-show="state.songs.length && (!isPhone || showingControls)"
v-show="artist.songs.length && (!isPhone || showingControls)"
@shuffleAll="shuffleAll"
@shuffleSelected="shuffleSelected"
:config="songListControlConfig"