mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
apply codec profile conditions
This commit is contained in:
parent
1bd638a932
commit
a8b841ba59
1 changed files with 2 additions and 2 deletions
|
@ -440,7 +440,7 @@
|
||||||
$('#txtPath', page).val(item.Path || '');
|
$('#txtPath', page).val(item.Path || '');
|
||||||
$('#txtName', page).val(item.Name || "");
|
$('#txtName', page).val(item.Name || "");
|
||||||
$('#txtOverview', page).val(item.Overview || "");
|
$('#txtOverview', page).val(item.Overview || "");
|
||||||
$('#txtSortName', page).val(item.SortName || "");
|
$('#txtSortName', page).val(item.ForcedSortName || "");
|
||||||
$('#txtDisplayMediaType', page).val(item.DisplayMediaType || "");
|
$('#txtDisplayMediaType', page).val(item.DisplayMediaType || "");
|
||||||
$('#txtCommunityRating', page).val(item.CommunityRating || "");
|
$('#txtCommunityRating', page).val(item.CommunityRating || "");
|
||||||
$('#txtCommunityVoteCount', page).val(item.VoteCount || "");
|
$('#txtCommunityVoteCount', page).val(item.VoteCount || "");
|
||||||
|
@ -725,7 +725,7 @@
|
||||||
var item = {
|
var item = {
|
||||||
Id: currentItem.Id,
|
Id: currentItem.Id,
|
||||||
Name: $('#txtName', form).val(),
|
Name: $('#txtName', form).val(),
|
||||||
SortName: $('#txtSortName', form).val(),
|
ForcedSortName: $('#txtSortName', form).val(),
|
||||||
DisplayMediaType: $('#txtDisplayMediaType', form).val(),
|
DisplayMediaType: $('#txtDisplayMediaType', form).val(),
|
||||||
CommunityRating: $('#txtCommunityRating', form).val(),
|
CommunityRating: $('#txtCommunityRating', form).val(),
|
||||||
VoteCount: $('#txtCommunityVoteCount', form).val(),
|
VoteCount: $('#txtCommunityVoteCount', form).val(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue