diff options
author | Sujith Haridasan <Sujith_Haridasan@mentor.com> | 2015-08-27 14:25:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-29 14:03:50 +0100 |
commit | f454fc50a32f453a5afe80907245f95bf24a67f1 (patch) | |
tree | 3636e63605b9ebe240e0009e2d7b01eeeb28ed1c /bitbake | |
parent | d45ab491d04acc07fcef91bb2d40dbbc271d5b0f (diff) | |
download | poky-f454fc50a32f453a5afe80907245f95bf24a67f1.tar.gz |
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 <sujith.h@gmail.com>
Signed-off-by: Sujith Haridasan <Sujith_Haridasan@mentor.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/projectpage.js | 1 |
1 files changed, 0 insertions, 1 deletions
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) { | |||
216 | var toBuild = ""; | 216 | var toBuild = ""; |
217 | freqBuildList.find(":checked").each(function(){ | 217 | freqBuildList.find(":checked").each(function(){ |
218 | toBuild += $(this).val(); | 218 | toBuild += $(this).val(); |
219 | toBuild += " "; | ||
220 | }); | 219 | }); |
221 | 220 | ||
222 | libtoaster.startABuild(libtoaster.ctx.projectBuildsUrl, libtoaster.ctx.projectId, toBuild, function(){ | 221 | libtoaster.startABuild(libtoaster.ctx.projectBuildsUrl, libtoaster.ctx.projectId, toBuild, function(){ |