mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add new or missing person types
This commit is contained in:
parent
60085c6a05
commit
2cf6ccef0e
3 changed files with 18 additions and 1 deletions
|
@ -925,7 +925,9 @@ import template from './metadataEditor.template.html';
|
|||
html += '</div>';
|
||||
|
||||
if (person.Role && person.Role !== lastType) {
|
||||
html += '<div class="secondary">' + (person.Role) + '</div>';
|
||||
html += '<div class="secondary">' + person.Role + '</div>';
|
||||
} else {
|
||||
html += '<div class="secondary">' + globalize.translate(person.Type) + '</div>';
|
||||
}
|
||||
|
||||
html += '</button>';
|
||||
|
|
|
@ -20,6 +20,12 @@
|
|||
<option value="GuestStar">${GuestStar}</option>
|
||||
<option value="Producer">${Producer}</option>
|
||||
<option value="Writer">${Writer}</option>
|
||||
<option value="Conductor">${Conductor}</option>
|
||||
<option value="Lyricist">${Lyricist}</option>
|
||||
<option value="Arranger">${Arranger}</option>
|
||||
<option value="Engineer">${Engineer}</option>
|
||||
<option value="Mixer">${Mixer}</option>
|
||||
<option value="Remixer">${Remixer}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue