Skip to content

Commit

Permalink
Fixes #18278: Restore missing columns on MACAddressTable
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Dec 30, 2024
1 parent 0cda10a commit 6f4bec7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions netbox/dcim/tables/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1155,6 +1155,7 @@ class MACAddressTable(NetBoxTable):
class Meta(DeviceComponentTable.Meta):
model = models.MACAddress
fields = (
'pk', 'id', 'mac_address', 'assigned_object_parent', 'assigned_object', 'created', 'last_updated',
'pk', 'id', 'mac_address', 'assigned_object_parent', 'assigned_object', 'description', 'comments', 'tags',
'created', 'last_updated',
)
default_columns = ('pk', 'mac_address', 'assigned_object_parent', 'assigned_object')
default_columns = ('pk', 'mac_address', 'assigned_object_parent', 'assigned_object', 'description')

0 comments on commit 6f4bec7

Please sign in to comment.