bitbake: toaster: tables Fix invalid field name on NewCustomImagesTable

Correct the field name in the NewCustomImagesTable as it is a Recipe
object it's self and not a container.

(Bitbake rev: ebd1c493d8b7fb9ee7b3e40c17165dc9c22ca795)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Wood
2015-11-26 16:44:34 +00:00
committed by Richard Purdie
parent 1c59846fc0
commit 34b22cf897

View File

@@ -545,7 +545,7 @@ class NewCustomImagesTable(ImageRecipesTable):
"deploy to a machine",
hideable=False,
orderable=True,
field_name="recipe__name")
field_name="name")
super(ImageRecipesTable, self).setup_columns(*args, **kwargs)