bitbake: toaster: fix banner after customimage package add

Correct formatting of the banner message after adding a package to a
custom image.

[YOCTO #9101]

(Bitbake rev: da233005eb8cfa7842cd1a768c16e42aaaa55fad)

Signed-off-by: Dave Lerner <dave.lerner@windriver.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Dave Lerner 2016-02-25 14:24:49 +00:00 committed by Richard Purdie
parent 149f57470c
commit c8dd72c797
1 changed files with 5 additions and 2 deletions

View File

@ -127,7 +127,8 @@ function customRecipePageInit(ctx) {
if (targetPkg.hasOwnProperty('depsAdded') &&
targetPkg.depsAdded.length > 0) {
msg += "added " + (targetPkg.depsAdded.length + 1);
msg += "added ";
msg += "<strong>" + (targetPkg.depsAdded.length + 1) + "</strong>";
msg += " packages to " + ctx.recipe.name + ": ";
msg += "<strong>" + targetPkg.name + "</strong> and its dependencies";
@ -150,7 +151,9 @@ function customRecipePageInit(ctx) {
(targetPkg.depsAdded.length + 1) + " packages added");
} else {
msg += ' <strong>' + targetPkg.name + '<strong>';
msg += "added <strong>1</strong>";
msg += " package to " + ctx.recipe.name + ": ";
msg += "<strong>" + targetPkg.name + "</strong>";
inlineNotify.text("1 package added");
}