diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-03-11 18:59:17 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-16 17:44:13 +0000 |
commit | df0672b038e6942c97d266af9ca175a06f2b0423 (patch) | |
tree | c25689fcdae68583fb206e53e7e3f43abe8cf7cc /bitbake/lib/toaster | |
parent | 5c4b7e00525b68958d551de189dbcf871cedf68d (diff) | |
download | poky-df0672b038e6942c97d266af9ca175a06f2b0423.tar.gz |
bitbake: toaster: Fix the orderkey to match the column
If the orderkey doesn't map to the current sort value then when hiding
the column the sort doesn't get removed.
[YOCTO #7262]
(Bitbake rev: 4b07195405b124ff39703e1ddc226dee420fed22)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster')
-rwxr-xr-x | bitbake/lib/toaster/toastergui/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index 807bf9bee1..fe016cce94 100755 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
@@ -1401,7 +1401,7 @@ def bpackage(request, build_id): | |||
1401 | 'qhelp':'The Git branch of the layer providing the recipe that builds the package', | 1401 | 'qhelp':'The Git branch of the layer providing the recipe that builds the package', |
1402 | 'orderfield': _get_toggle_order(request, "recipe__layer_version__branch"), | 1402 | 'orderfield': _get_toggle_order(request, "recipe__layer_version__branch"), |
1403 | 'ordericon':_get_toggle_order_icon(request, "recipe__layer_version__branch"), | 1403 | 'ordericon':_get_toggle_order_icon(request, "recipe__layer_version__branch"), |
1404 | 'orderkey' : 'recipe__layer_version__layer__branch', | 1404 | 'orderkey' : 'recipe__layer_version__branch', |
1405 | 'clclass': 'recipe__layer_version__branch', 'hidden': 1, | 1405 | 'clclass': 'recipe__layer_version__branch', 'hidden': 1, |
1406 | }, | 1406 | }, |
1407 | { | 1407 | { |