summaryrefslogtreecommitdiff
path: root/poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2018-09-06 08:26:40 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-09-11 23:48:09 +0300
commit5dd7cbb3457c90724fc442b15bab2082d82b560a (patch)
tree368ed59906a1874f33a3a4a44fbb2f544013dc0a /poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
parent3b32a97b1b171ca776a24454d22c1c59fc7bfa00 (diff)
downloadopenbmc-5dd7cbb3457c90724fc442b15bab2082d82b560a.tar.xz
poky: sumo refresh 45ef387cc5..51872d3f99
Update poky to sumo HEAD. Awais Belal (8): bitbake: toaster: allow pokydirname to be evaluated when all layers are local bitbake: toaster: use a more flexible way to find bitbake bitbake: bitbake: toaster: allow TOASTER_DIR to be overridden from cmdline bitbake: toaster/widgets.py: avoid divide by zero issues bitbake: toastergui/newproject.html: fix release divs bitbake: toaster/checksettings: allow CUSTOM_XML_ONLY setting through env bitbake: toaster/models.py: allow local paths for custom recipe's base bitbake: toaster/layerdetails.js: don't hide local layer info Karsten Strand (1): bitbake: bitbake: toaster: Fix comparison in recipe template Change-Id: I8dbcad1d98ff8d3c660563781d887a2c91db5bf2 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js')
-rw-r--r--poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
index 9ead393cb..933b65b4c 100644
--- a/poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
+++ b/poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
@@ -359,7 +359,8 @@ function layerDetailsPageInit (ctx) {
if ($(this).is("dt")) {
var dd = $(this).next("dd");
if (!dd.children("form:visible")|| !dd.find(".current-value").html()){
- if (ctx.layerVersion.layer_source == ctx.layerSourceTypes.TYPE_IMPORTED){
+ if (ctx.layerVersion.layer_source == ctx.layerSourceTypes.TYPE_IMPORTED ||
+ ctx.layerVersion.layer_source == ctx.layerSourceTypes.TYPE_LOCAL) {
/* There's no current value and the layer is editable
* so show the "Not set" and hide the delete icon
*/