Skip to content

Commit

Permalink
Fixes #7802: Differentiate ID and VID columns in VLANs table
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Nov 11, 2021
1 parent 3ad773b commit 27d7400
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/release-notes/version-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

---

Expand Down
2 changes: 1 addition & 1 deletion netbox/ipam/tables/vlans.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 27d7400

Please sign in to comment.