summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2016-09-05 15:29:22 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-06 10:35:24 +0100
commit249dd31fcaabbec32fdee30b0c84be90d4f92430 (patch)
treec0c47942b52a9f384edd73ec70f9650ca036ef8c /lib
parent99675c19375c96140bc8ae8f9fc3a1945a77cebb (diff)
downloadbitbake-contrib-249dd31fcaabbec32fdee30b0c84be90d4f92430.tar.gz
toaster: tasks Remove recipe version from defaults
The 'Recipe version' column should not be part of the set of columns shown by default in the tasks table. Set the hidden property for that column to 'True' so that it doesn't show when you load that table for the first time. [YOCTO #10179] Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/toaster/toastergui/buildtables.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/toaster/toastergui/buildtables.py b/lib/toaster/toastergui/buildtables.py
index b6485e64f..dd0a6900d 100644
--- a/lib/toaster/toastergui/buildtables.py
+++ b/lib/toaster/toastergui/buildtables.py
@@ -482,7 +482,8 @@ class BuildTasksTable(BuildTablesMixin):
orderable=True)
self.add_column(title="Recipe version",
- field_name='recipe__version')
+ field_name='recipe__version',
+ hidden=True)
self.add_column(title="Executed",
static_data_name="task_executed",