mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-20 04:24:20 -04:00
[web-src] Add composer to track and queue item dialogs
This commit is contained in:
parent
0358094908
commit
219d9df024
@ -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>
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user