1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add "Production" and "TV" episode orders to metadata editor.

This commit is contained in:
oledfish 2021-09-07 16:47:10 -03:00
parent f4cb4e8fa0
commit f136a10bbf

View file

@ -694,7 +694,7 @@ import template from './metadataEditor.template.html';
showElement('#fldDisplayOrder', context);
showElement('.seriesDisplayOrderDescription', context);
context.querySelector('#selectDisplayOrder').innerHTML = '<option value="">' + globalize.translate('Aired') + '</option><option value="absolute">' + globalize.translate('Absolute') + '</option><option value="dvd">Dvd</option>';
context.querySelector('#selectDisplayOrder').innerHTML = '<option value="">' + globalize.translate('Aired') + '</option><option value="absolute">' + globalize.translate('Absolute') + '</option><option value="dvd">DVD</option>' + '</option><option value="production">' + globalize.translate('Production') + '</option><option value="tv">TV</option>';
} else {
context.querySelector('#selectDisplayOrder').innerHTML = '';
hideElement('#fldDisplayOrder', context);