summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/importlayer.js
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js/importlayer.js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/importlayer.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/importlayer.js b/bitbake/lib/toaster/toastergui/static/js/importlayer.js
index df48e84876..560e25a01c 100644
--- a/bitbake/lib/toaster/toastergui/static/js/importlayer.js
+++ b/bitbake/lib/toaster/toastergui/static/js/importlayer.js
@@ -50,7 +50,7 @@ function importLayerPageInit (ctx) {
50 newLayerDep.children("span").tooltip(); 50 newLayerDep.children("span").tooltip();
51 51
52 var link = newLayerDep.children("a"); 52 var link = newLayerDep.children("a");
53 link.attr("href", currentLayerDepSelection.layerDetailsUrl); 53 link.attr("href", currentLayerDepSelection.layerdetailurl);
54 link.text(currentLayerDepSelection.name); 54 link.text(currentLayerDepSelection.name);
55 link.tooltip({title: currentLayerDepSelection.tooltip, placement: "right"}); 55 link.tooltip({title: currentLayerDepSelection.tooltip, placement: "right"});
56 56
@@ -65,10 +65,10 @@ function importLayerPageInit (ctx) {
65 65
66 $("#layer-deps-list").append(newLayerDep); 66 $("#layer-deps-list").append(newLayerDep);
67 67
68 libtoaster.getLayerDepsForProject(currentLayerDepSelection.layerDetailsUrl, function (data){ 68 libtoaster.getLayerDepsForProject(currentLayerDepSelection.layerdetailurl, function (data){
69 /* These are the dependencies of the layer added as a dependency */ 69 /* These are the dependencies of the layer added as a dependency */
70 if (data.list.length > 0) { 70 if (data.list.length > 0) {
71 currentLayerDepSelection.url = currentLayerDepSelection.layerDetailsUrl; 71 currentLayerDepSelection.url = currentLayerDepSelection.layerdetailurl;
72 layerDeps[currentLayerDepSelection.id].deps = data.list; 72 layerDeps[currentLayerDepSelection.id].deps = data.list;
73 } 73 }
74 74