[web-src] Add composer to track and queue item dialogs

This commit is contained in:
chme 2018-12-16 12:32:10 +01:00
parent 0358094908
commit 219d9df024
2 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,10 @@
<span class="heading">Album artist</span> <span class="heading">Album artist</span>
<span class="title is-6">{{ item.album_artist }}</span> <span class="title is-6">{{ item.album_artist }}</span>
</p> </p>
<p v-if="item.composer">
<span class="heading">Composer</span>
<span class="title is-6">{{ item.composer }}</span>
</p>
<p v-if="item.year > 0"> <p v-if="item.year > 0">
<span class="heading">Year</span> <span class="heading">Year</span>
<span class="title is-6">{{ item.year }}</span> <span class="title is-6">{{ item.year }}</span>

View File

@ -21,6 +21,10 @@
<span class="heading">Album artist</span> <span class="heading">Album artist</span>
<a class="title is-6 has-text-link" @click="open_artist">{{ track.album_artist }}</a> <a class="title is-6 has-text-link" @click="open_artist">{{ track.album_artist }}</a>
</p> </p>
<p v-if="track.composer">
<span class="heading">Composer</span>
<span class="title is-6">{{ track.composer }}</span>
</p>
<p v-if="track.date_released"> <p v-if="track.date_released">
<span class="heading">Release date</span> <span class="heading">Release date</span>
<span class="title is-6">{{ track.date_released | time('L')}}</span> <span class="title is-6">{{ track.date_released | time('L')}}</span>