diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/importlayer.js | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/importlayer.js b/bitbake/lib/toaster/toastergui/static/js/importlayer.js index 2fadbc0978..c68f3669f6 100644 --- a/bitbake/lib/toaster/toastergui/static/js/importlayer.js +++ b/bitbake/lib/toaster/toastergui/static/js/importlayer.js | |||
@@ -195,8 +195,8 @@ function importLayerPageInit (ctx) { | |||
195 | var dupLayerInfo = $("#duplicate-layer-info"); | 195 | var dupLayerInfo = $("#duplicate-layer-info"); |
196 | dupLayerInfo.find(".dup-layer-name").text(layer.name); | 196 | dupLayerInfo.find(".dup-layer-name").text(layer.name); |
197 | dupLayerInfo.find(".dup-layer-link").attr("href", layer.layerdetailurl); | 197 | dupLayerInfo.find(".dup-layer-link").attr("href", layer.layerdetailurl); |
198 | dupLayerInfo.find("#dup-layer-vcs-url").text(layer.layer__vcs_url); | 198 | dupLayerInfo.find("#dup-layer-vcs-url").text(layer.vcs_url); |
199 | dupLayerInfo.find("#dup-layer-revision").text(layer.revision.commit); | 199 | dupLayerInfo.find("#dup-layer-revision").text(layer.vcs_reference); |
200 | 200 | ||
201 | $(".fields-apart-from-layer-name").fadeOut(function(){ | 201 | $(".fields-apart-from-layer-name").fadeOut(function(){ |
202 | 202 | ||
@@ -214,11 +214,10 @@ function importLayerPageInit (ctx) { | |||
214 | $.getJSON(libtoaster.ctx.layersTypeAheadUrl, | 214 | $.getJSON(libtoaster.ctx.layersTypeAheadUrl, |
215 | { include_added: "true" , search: name, format: "json" }, | 215 | { include_added: "true" , search: name, format: "json" }, |
216 | function(layer) { | 216 | function(layer) { |
217 | if (layer.rows.length > 0) { | 217 | if (layer.results.length > 0) { |
218 | for (var i in layer.rows){ | 218 | for (var i in layer.results){ |
219 | if (layer.rows[i].name == name) { | 219 | if (layer.results[i].name == name) { |
220 | console.log(layer.rows[i]) | 220 | layerExistsError(layer.results[i]); |
221 | layerExistsError(layer.rows[i]); | ||
222 | } | 221 | } |
223 | } | 222 | } |
224 | } | 223 | } |