Skip to content

Commit

Permalink
fix for netbox-community#10059 - add identifier to L2VPN table
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson committed Aug 22, 2022
1 parent 804c064 commit 9174397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/ipam/tables/l2vpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Meta(NetBoxTable.Meta):
model = L2VPN
fields = (
'pk', 'name', 'slug', 'type', 'description', 'import_targets', 'export_targets', 'tenant', 'tenant_group',
'actions',
'actions', 'identifier',
)
default_columns = ('pk', 'name', 'type', 'description', 'actions')

Expand Down

0 comments on commit 9174397

Please sign in to comment.