Browse Source

Fixes #7802: Differentiate ID and VID columns in VLANs table

jeremystretch 4 years ago
parent
commit
27d7400c36
2 changed files with 3 additions and 2 deletions
  1. 2 1
      docs/release-notes/version-3.0.md
  2. 1 1
      netbox/ipam/tables/vlans.py

+ 2 - 1
docs/release-notes/version-3.0.md

@@ -13,8 +13,9 @@
 * [#7741](https://github.com/netbox-community/netbox/issues/7741) - Fix 404 when attaching multiple images in succession
 * [#7752](https://github.com/netbox-community/netbox/issues/7752) - Fix minimum version check under Python v3.10
 * [#7766](https://github.com/netbox-community/netbox/issues/7766) - Add missing outer dimension columns to rack table
-* [#7780](https://github.com/netbox-community/netbox/issues/7780) - Preserve mutli-line values during CSV file import
+* [#7780](https://github.com/netbox-community/netbox/issues/7780) - Preserve multi-line values during CSV file import
 * [#7783](https://github.com/netbox-community/netbox/issues/7783) - Fix indentation of locations under site view
+* [#7802](https://github.com/netbox-community/netbox/issues/7802) - Differentiate ID and VID columns in VLANs table
 
 ---
 

+ 1 - 1
netbox/ipam/tables/vlans.py

@@ -93,7 +93,7 @@ class VLANTable(BaseTable):
     pk = ToggleColumn()
     vid = tables.TemplateColumn(
         template_code=VLAN_LINK,
-        verbose_name='ID'
+        verbose_name='VID'
     )
     site = tables.Column(
         linkify=True