diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/layerdetails.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js index 2793225d0c..9339ae8bcc 100644 --- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js +++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js | |||
@@ -252,10 +252,10 @@ function layerDetailsPageInit (ctx) { | |||
252 | break; | 252 | break; |
253 | } | 253 | } |
254 | 254 | ||
255 | alertMsg.append("You have deleted <strong>1</strong> layer from <a id=\"project-affected-name\"></a>: <span id=\"layer-affected-name\"></span>"); | 255 | alertMsg.append("You have deleted <strong>1</strong> layer from <a id=\"project-affected-name\"></a>: <strong id=\"layer-affected-name\"></strong>"); |
256 | } | 256 | } |
257 | 257 | ||
258 | alertMsg.children("#layer-affected-name").html("<strong>" + ctx.layerVersion.name + "</strong>"); | 258 | alertMsg.children("#layer-affected-name").text(ctx.layerVersion.name); |
259 | alertMsg.children("#project-affected-name").text(ctx.projectName); | 259 | alertMsg.children("#project-affected-name").text(ctx.projectName); |
260 | alertMsg.children("#project-affected-name").attr("href", ctx.projectPageUrl); | 260 | alertMsg.children("#project-affected-name").attr("href", ctx.projectPageUrl); |
261 | $("#alert-area").show(); | 261 | $("#alert-area").show(); |