summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js/layerdetails.js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/layerdetails.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
index 41cbf4ba93..2addecd357 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
@@ -211,7 +211,7 @@ function layerDetailsPageInit (ctx) {
211 addRmLayerBtn.prepend("<span class=\"icon-trash\"></span>"); 211 addRmLayerBtn.prepend("<span class=\"icon-trash\"></span>");
212 212
213 if (depsList) { 213 if (depsList) {
214 alertMsg.append("You have added <strong>"+(depsList.length+1)+"</strong> layers: <span id=\"layer-affected-name\"></span> and its dependencies "); 214 alertMsg.append("You have added <strong>"+(depsList.length+1)+"</strong> layers to <a id=\"project-affected-name\"></a>: <span id=\"layer-affected-name\"></span> and its dependencies ");
215 215
216 /* Build the layer deps list */ 216 /* Build the layer deps list */
217 depsList.map(function(layer, i){ 217 depsList.map(function(layer, i){
@@ -227,7 +227,7 @@ function layerDetailsPageInit (ctx) {
227 alertMsg.append(link); 227 alertMsg.append(link);
228 }); 228 });
229 } else { 229 } else {
230 alertMsg.append("You have added <strong>1</strong> layer: <span id=\"layer-affected-name\"></span>"); 230 alertMsg.append("You have added <strong>1</strong> layer to <a id=\"project-affected-name\"></a>: <span id=\"layer-affected-name\"></span>");
231 } 231 }
232 } else { 232 } else {
233 /* disable and switch all the button states */ 233 /* disable and switch all the button states */
@@ -252,10 +252,12 @@ function layerDetailsPageInit (ctx) {
252 break; 252 break;
253 } 253 }
254 254
255 alertMsg.append("You have deleted <strong>1</strong> layer: <span id=\"layer-affected-name\"></span>"); 255 alertMsg.append("You have deleted <strong>1</strong> layer from <a id=\"project-affected-name\"></a>: <span id=\"layer-affected-name\"></span>");
256 } 256 }
257 257
258 alertMsg.children("#layer-affected-name").text(ctx.layerVersion.name); 258 alertMsg.children("#layer-affected-name").html("<strong>" + ctx.layerVersion.name + "</strong>");
259 alertMsg.children("#project-affected-name").text(ctx.projectName);
260 alertMsg.children("#project-affected-name").attr("href", ctx.projectPageUrl);
259 $("#alert-area").show(); 261 $("#alert-area").show();
260 } 262 }
261 263