diff --git a/bitbake/lib/toaster/toastergui/static/js/base.js b/bitbake/lib/toaster/toastergui/static/js/base.js index fac59e6458..619ad287c4 100644 --- a/bitbake/lib/toaster/toastergui/static/js/base.js +++ b/bitbake/lib/toaster/toastergui/static/js/base.js @@ -11,6 +11,10 @@ function basePageInit (ctx) { return; } + /* Hide the change project icon when there is only one project */ + if (ctx.numProjects == 1){ + $('#project .icon-pencil').hide(); + } newBuildButton.show().removeAttr("disabled");