From 917439725ad3cb6195159ca51266ce67a8175c72 Mon Sep 17 00:00:00 2001 From: Arthur Date: Mon, 22 Aug 2022 09:08:16 -0700 Subject: [PATCH] fix for #10059 - add identifier to L2VPN table --- netbox/ipam/tables/l2vpn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/tables/l2vpn.py b/netbox/ipam/tables/l2vpn.py index 168c8ca89..077c6eb77 100644 --- a/netbox/ipam/tables/l2vpn.py +++ b/netbox/ipam/tables/l2vpn.py @@ -34,7 +34,7 @@ class L2VPNTable(TenancyColumnsMixin, NetBoxTable): 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')