mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
Hide lyrics hint if no song
This commit is contained in:
parent
8bf5491912
commit
a60f15ca3c
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
<article id="lyrics">
|
||||
<div class="content">
|
||||
<div v-if="song.lyrics" v-html="song.lyrics"/>
|
||||
<p class="none" v-else>No lyrics found. Are you not listening to Bach?</p>
|
||||
<p class="none" v-if="song.id && !song.lyrics">No lyrics found. Are you not listening to Bach?</p>
|
||||
</div>
|
||||
</article>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue