diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-07-31 15:09:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-01 11:26:12 +0100 |
commit | 11627fc10fa3c45189af1d9b6e549e5223a0f29b (patch) | |
tree | 1367dacf4fcf52003650f2763e8a010c4988f365 /bitbake/lib/toaster | |
parent | c385f1551b5276f2f9aab657dfc46ae5c9bde485 (diff) | |
download | poky-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/lib/toaster')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/base.js | 2 |
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 | ||