From f454fc50a32f453a5afe80907245f95bf24a67f1 Mon Sep 17 00:00:00 2001 From: Sujith Haridasan Date: Thu, 27 Aug 2015 14:25:58 +0100 Subject: bitbake: toaster: Fix extra checkbox in most recently built recipes section This patch fixes an extra checkbox which is due to an extra space in the target. [YOCTO #8202] (Bitbake rev: 742d15beaf7e2bb8b61ed61b1a26909d16de0eac) Signed-off-by: Sujith Haridasan Signed-off-by: Sujith Haridasan Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- 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 146319e042..d36704751c 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(){ -- cgit v1.2.3-54-g00ecf