mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Somehow v-else wasnt recognized
This commit is contained in:
parent
9cad5fa280
commit
aa3b8bd52a
3 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@
|
|||
type="favorites">
|
||||
</song-list>
|
||||
|
||||
<div class="none" v-else>
|
||||
<div v-show="!state.songs.length" class="none">
|
||||
Start loving!
|
||||
Click the <i style="margin: 0 5px" class="fa fa-heart"></i> icon when a song is playing to add it
|
||||
to this list.
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
:playlist="playlist">
|
||||
</song-list>
|
||||
|
||||
<div class="none" v-else>
|
||||
<div v-show="!state.songs.length" class="none">
|
||||
The playlist is currently empty. You can fill it up by dragging songs into its name in the sidebar,
|
||||
or use the "Add To…" button.
|
||||
</div>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
type="queue">
|
||||
</song-list>
|
||||
|
||||
<div class="none" v-else>
|
||||
<div v-show="!state.songs.length" class="none">
|
||||
<p>Empty spaces. Abandoned places.</p>
|
||||
|
||||
<p v-if="showShufflingAllOption">How about
|
||||
|
|
Loading…
Reference in a new issue