mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
sync fixes
This commit is contained in:
parent
66845e0403
commit
819deb6713
2 changed files with 7 additions and 7 deletions
|
@ -78,7 +78,7 @@
|
|||
|
||||
var html = '';
|
||||
|
||||
if (dialogOptions.Options.indexOf('Name') != -1) {
|
||||
if (options.showName || dialogOptions.Options.indexOf('Name') != -1) {
|
||||
|
||||
html += '<p>';
|
||||
html += '<label for="txtSyncJobName">' + Globalize.translate('LabelSyncJobName') + '</label>';
|
||||
|
@ -259,10 +259,10 @@
|
|||
|
||||
if (option) {
|
||||
$('.profileDescription', form).html(option.Description || '');
|
||||
setQualityFieldVisible(form, options.QualityOptions.length > 0 && option.EnableQualityOptions);
|
||||
setQualityFieldVisible(form, options.QualityOptions.length > 0 && option.EnableQualityOptions && options.Options.indexOf('Quality') != -1);
|
||||
} else {
|
||||
$('.profileDescription', form).html('');
|
||||
setQualityFieldVisible(form, options.QualityOptions.length > 0);
|
||||
setQualityFieldVisible(form, options.QualityOptions.length > 0 && options.Options.indexOf('Quality') != -1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue