summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-07-31 15:09:19 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-01 11:26:12 +0100
commit11627fc10fa3c45189af1d9b6e549e5223a0f29b (patch)
tree1367dacf4fcf52003650f2763e8a010c4988f365 /bitbake
parentc385f1551b5276f2f9aab657dfc46ae5c9bde485 (diff)
downloadpoky-11627fc10fa3c45189af1d9b6e549e5223a0f29b.tar.gz
bitbake: bitbake: toastergui: newbuildbutton Fix typo on project save function
project.id rather than project.pk. (Bitbake rev: 047df808203f3779243eb88c069757f7a7b7bbed) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/base.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/base.js b/bitbake/lib/toaster/toastergui/static/js/base.js
index dda2549698..09c3ef137b 100644
--- a/bitbake/lib/toaster/toastergui/static/js/base.js
+++ b/bitbake/lib/toaster/toastergui/static/js/base.js
@@ -145,7 +145,7 @@ function basePageInit(ctx) {
145 145
146 146
147 newBuildProjectSaveBtn.click(function () { 147 newBuildProjectSaveBtn.click(function () {
148 selectedProject.projectId = selectedProject.pk; 148 selectedProject.projectId = selectedProject.id;
149 /* Update the typeahead project_id paramater */ 149 /* Update the typeahead project_id paramater */
150 _checkProjectBuildable(); 150 _checkProjectBuildable();
151 151