This patch fixes an extra checkbox which is due to an extra space in the target.
[ YOCTO #8202 ] Signed-off-by: Sujith Haridasan <[email protected]> Signed-off-by: Sujith Haridasan <[email protected]> --- bitbake/lib/toaster/toastergui/static/js/projectpage.js | 1 - 1 file changed, 1 deletion(-) diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js b/bitbake/lib/toaster/toastergui/static/js/projectpage.js index 146319e..d367047 100644 --- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js +++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js @@ -216,7 +216,6 @@ function projectPageInit(ctx) { var toBuild = ""; freqBuildList.find(":checked").each(function(){ toBuild += $(this).val(); - toBuild += " "; }); libtoaster.startABuild(libtoaster.ctx.projectBuildsUrl, libtoaster.ctx.projectId, toBuild, function(){ -- 1.9.1 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
