#4634 - Correct inventory item table accessor definition on manufacturer column

This commit is contained in:
Daniel Sheppard
2020-05-13 09:26:56 -05:00
parent d56a46ebde
commit 2c9be2d03b
2 changed files with 2 additions and 1 deletions

View File

@@ -1195,7 +1195,7 @@ class InventoryItemTable(BaseTable):
args=[Accessor('device.pk')]
)
manufacturer = tables.Column(
accessor=Accessor('manufacturer.name')
accessor=Accessor('manufacturer')
)
discovered = BooleanColumn()