diff --git a/srv/static/js/buildactionspage.js b/srv/static/js/buildactionspage.js index 1198023..628f09c 100644 --- a/srv/static/js/buildactionspage.js +++ b/srv/static/js/buildactionspage.js @@ -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)