1
0
Fork 0
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:
MrTimscampi 2021-07-27 23:52:54 +02:00
parent 60085c6a05
commit 2cf6ccef0e
3 changed files with 18 additions and 1 deletions

View file

@ -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>';