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

Update index.js

This commit is contained in:
BaronGreenback 2020-11-19 15:05:03 +00:00 committed by GitHub
parent 4dc5354a0e
commit 55a1819ad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ function populateVersions(packageInfo, page, installedPlugin) {
for (let i = 0; i < packageInfo.versions.length; i++) {
const version = packageInfo.versions[i];
html += '<option value="' + version.version + '">' + version.version + '</option>';
html += '<option value="' + version.version + '">' + version.version +'[from repository ' + version.repositoryName + ']</option>';
}
const selectmenu = $('#selectVersion', page).html(html);