Render name and version of packages in build preparation correctly

This commit is contained in:
Martchus 2022-11-13 22:37:32 +01:00
parent aff7853f94
commit 9c219288c9
1 changed files with 3 additions and 1 deletions

View File

@ -793,7 +793,9 @@ function renderUpdateInfoWithCheckbox(id, packageName, newPackageName, versionIn
function renderPackageList(packageList)
{
return GenericRendering.renderCustomList(packageList, PackageRendering.renderPackage);
return GenericRendering.renderCustomList(packageList, function(packageObj) {
return PackageRendering.renderPackage(packageObj);
});
}
function renderBuildPreparationBuildData(buildDataForPackage)