From 24e5a178e1a6539b10580285ff83be28cc933b82 Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Wed, 14 Oct 2015 13:20:50 +0100 Subject: bitbake: toaster: Have 'Version' next to recipe name In all Toaster tables we show the version next to the recipe or package names, with one exception: the recipes table in the layer details page, where we are showing the version next to the recipe description. This patch moves the version column next to the recipe name, for consistency with all other Toaster tables. (Bitbake rev: b5af7084b28158a8a9eaf78db463555ae8e0f620) Signed-off-by: Belen Barros Pena Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/tables.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py index b10445b00f..9c9cda4e95 100644 --- a/bitbake/lib/toaster/toastergui/tables.py +++ b/bitbake/lib/toaster/toastergui/tables.py @@ -432,12 +432,12 @@ class LayerRecipesTable(RecipesTable): orderable=True, field_name="name") - self.add_column(title="Description", - field_name="get_description_or_summary") - self.add_column(title="Version", field_name="version") + self.add_column(title="Description", + field_name="get_description_or_summary") + build_recipe_template ='' self.add_column(title="Build recipe", -- cgit v1.2.3-54-g00ecf