diff options
author | Dave Lerner <dave.lerner@windriver.com> | 2014-04-11 17:19:28 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-08 16:18:12 +0100 |
commit | 1a10bd3036b8943e2626ac6e033e1f9b21e1a571 (patch) | |
tree | 24e6191485f67e8fcac97b05ca88c3b9faff27f6 /bitbake/lib/toaster/toastergui/templates/target.html | |
parent | 12782678073b1605cc282a0a89e4ebb2e10a9be8 (diff) | |
download | poky-1a10bd3036b8943e2626ac6e033e1f9b21e1a571.tar.gz |
bitbake: toaster: fix span2 headings for packages
[YOCTO 6147]
Fix bug in views.py that put 'span2' class id in a 'clclass' key
instead of the 'dclass' key. This fix exposed another problem in
target.html and the target view function that used 'package_size'
instead of 'size' as the 'clclass' which is inconsistent with the
model field name, causing table data columns to be shown when
the header is hidden.
(Bitbake rev: 436865ac8520c1d75401dde7df373dba9a386c9d)
Signed-off-by: Dave Lerner <dave.lerner@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/target.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/target.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/target.html b/bitbake/lib/toaster/toastergui/templates/target.html index 86e46dcb1b..564fd27162 100644 --- a/bitbake/lib/toaster/toastergui/templates/target.html +++ b/bitbake/lib/toaster/toastergui/templates/target.html | |||
@@ -79,7 +79,7 @@ | |||
79 | {{package.version|filtered_packageversion:package.revision}} | 79 | {{package.version|filtered_packageversion:package.revision}} |
80 | </a> | 80 | </a> |
81 | </td> | 81 | </td> |
82 | <td class="package-size sizecol"> | 82 | <td class="size sizecol"> |
83 | {{package.size|filtered_installedsize:package.installed_size|filtered_filesizeformat}} | 83 | {{package.size|filtered_installedsize:package.installed_size|filtered_filesizeformat}} |
84 | </td> | 84 | </td> |
85 | <td class="size_over_total sizecol"> | 85 | <td class="size_over_total sizecol"> |