[web-src] Show track title for streams in bottom navbar

If queue item is a radio stream, title contains the radio stream name, 
artist contains the artist of the current streaming song and album 
contains the title of the current streaming song.
This commit is contained in:
chme 2019-02-22 12:05:11 +01:00
parent 4a06b05365
commit d931385886
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<div>
<p class="is-size-7 fd-is-text-clipped">
<strong>{{ now_playing.title }}</strong><br>
{{ now_playing.artist }}
{{ now_playing.artist }}<span v-if="now_playing.data_kind === 'url'"> - {{ now_playing.album }}</span>
</p>
</div>
</router-link>