mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
Fix controls visibility in song list screens
This commit is contained in:
parent
08b37d532d
commit
21d23755be
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@
|
|||
</span>
|
||||
|
||||
<song-list-controls
|
||||
v-show="!isPhone || showingControls"
|
||||
v-show="state.songs.length && (!isPhone || showingControls)"
|
||||
:config="songListControlConfig"
|
||||
:selectedSongs="selectedSongs"
|
||||
/>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
</span>
|
||||
|
||||
<song-list-controls
|
||||
v-show="!isPhone || showingControls"
|
||||
v-show="playlist.songs.length && (!isPhone || showingControls)"
|
||||
@shuffleAll="shuffleAll"
|
||||
@shuffleSelected="shuffleSelected"
|
||||
@deletePlaylist="confirmDelete"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
</span>
|
||||
|
||||
<song-list-controls
|
||||
v-show="!isPhone || showingControls"
|
||||
v-show="state.songs.length && (!isPhone || showingControls)"
|
||||
@shuffleAll="shuffleAll"
|
||||
@shuffleSelected="shuffleSelected"
|
||||
:config="songListControlConfig"
|
||||
|
|
Loading…
Reference in a new issue