aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2016-07-21 18:58:38 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-25 09:24:47 +0100
commitdc1781e3783724823fd6b0c2d65f6b2771e8d0be (patch)
tree076a7021c64b6f5634eaf92609f37f58c7fe451f
parentd6e88b7b410b6b99b47b031111a1126da9fd31b3 (diff)
downloadbitbake-dc1781e3783724823fd6b0c2d65f6b2771e8d0be.tar.gz
toaster: set non-hideable columns for build tasks table
The task, recipe and order columns in the build tasks table should not be hideable. If they are, it's possible for the table to have all of its columns hidden so that it no longer displays. Set the hideable property to prevent these columns from being hidden. [YOCTO #9833] Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/toaster/toastergui/buildtables.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/toaster/toastergui/buildtables.py b/lib/toaster/toastergui/buildtables.py
index f3d7236ae..f845c66c6 100644
--- a/lib/toaster/toastergui/buildtables.py
+++ b/lib/toaster/toastergui/buildtables.py
@@ -431,17 +431,20 @@ class BuildTasksTable(BuildTablesMixin):
self.add_column(title="Order",
static_data_name="order",
static_data_template='{{data.order}}',
+ hideable=False,
orderable=True)
self.add_column(title="Task",
static_data_name="task_name",
static_data_template=task_link_tmpl(
"{{data.task_name}}"),
+ hideable=False,
orderable=True)
self.add_column(title="Recipe",
static_data_name='recipe__name',
static_data_template=recipe_name_tmpl,
+ hideable=False,
orderable=True)
self.add_column(title="Recipe version",