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

fixes #289 - Rename "Season 0" to "Specials"?

This commit is contained in:
Luke Pulverenti 2013-05-24 11:01:53 -04:00
parent ed0f918ac6
commit 5ce7645ca1
2 changed files with 8 additions and 0 deletions

View file

@ -15,6 +15,8 @@
$('#txtItemsByNamePath', page).removeAttr("required");
}
$('#txtSeasonZeroName', page).val(config.SeasonZeroDisplayName);
Dashboard.hideLoadingMsg();
}
@ -87,6 +89,8 @@
config.ItemsByNamePath = '';
}
config.SeasonZeroDisplayName = $('#txtSeasonZeroName', form).val();
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
});