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

minor improvements to plugin pages

This commit is contained in:
dkanada 2021-02-24 00:06:53 +09:00
parent b3fb614ff5
commit 13eeabf267
5 changed files with 12 additions and 14 deletions

View file

@ -33,7 +33,7 @@ function populateVersions(packageInfo, page, installedPlugin) {
$('#pCurrentVersion', page).hide().html('');
}
const packageVersion = packageInfo.versions[0];
const packageVersion = packageInfo.versions.sort().pop();
if (packageVersion) {
selectmenu.val(packageVersion.version);
}