1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Merge pull request #4637 from netbox-community/4634-InventoryItemException

#4634 - Correct inventory item table accessor definition on manufacturer column
This commit is contained in:
Daniel Sheppard
2020-05-13 10:46:29 -05:00
committed by GitHub
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()