mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Fix Artist and Album components
This commit is contained in:
parent
4b96dad5a3
commit
a209c93a5b
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue