From 7957e1f15f6a166c5cb4011c64794e9896632e70 Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Fri, 28 Aug 2015 17:06:35 +0100 Subject: bitbake: toaster: fix show / hide columns in all builds table The classes errors_no and warnings_no were removed from the td tags in the builds.html template. That broke the show / hide columns functionality, which would hide only the table heading, but not the data cells. This patch brings back those classes so that you can hide and show the errors and warnings information. (Bitbake rev: da5310f05f8573b2138da98a64749269d0711c18) Signed-off-by: Belen Barros Pena Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/templates/builds.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/toaster/toastergui/templates/builds.html b/bitbake/lib/toaster/toastergui/templates/builds.html index b68fa6f6db..c0d0c64c20 100644 --- a/bitbake/lib/toaster/toastergui/templates/builds.html +++ b/bitbake/lib/toaster/toastergui/templates/builds.html @@ -81,12 +81,12 @@ {{exectask.count}} task{{exectask.count|pluralize}} {%endif%} - + {% if build.errors.count %} {{build.errors.count}} error{{build.errors.count|pluralize}} {%endif%} - {% if build.warnings.count %}{{build.warnings.count}} warning{{build.warnings.count|pluralize}}{%endif%} + {% if build.warnings.count %}{{build.warnings.count}} warning{{build.warnings.count|pluralize}}{%endif%} {{build.timespent_seconds|sectohms}} {% if build.outcome == build.SUCCEEDED %} -- cgit v1.2.3-54-g00ecf