From 3d14a7942812bd38ed83e144e4a09bf0f9c9bbc7 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Thu, 16 Mar 2023 08:20:52 -0400 Subject: [PATCH] Fixes #11979: Correct URL for tags in route targets list --- docs/release-notes/version-3.4.md | 9 +++++++++ netbox/ipam/tables/vrfs.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/version-3.4.md b/docs/release-notes/version-3.4.md index d754123c6..6ed66a61d 100644 --- a/docs/release-notes/version-3.4.md +++ b/docs/release-notes/version-3.4.md @@ -2,6 +2,15 @@ ## v3.4.7 (FUTURE) +### Enhancements + +* [#11833](https://github.com/netbox-community/netbox/issues/11833) - Add fieldset support for custom script forms + +### Bug Fixes + +* [#11984](https://github.com/netbox-community/netbox/issues/11984) - Remove erroneous 802.3az PoE type +* [#11979](https://github.com/netbox-community/netbox/issues/11979) - Correct URL for tags in route targets list + --- ## v3.4.6 (2023-03-13) diff --git a/netbox/ipam/tables/vrfs.py b/netbox/ipam/tables/vrfs.py index 635af48d0..12e785636 100644 --- a/netbox/ipam/tables/vrfs.py +++ b/netbox/ipam/tables/vrfs.py @@ -62,7 +62,7 @@ class RouteTargetTable(TenancyColumnsMixin, NetBoxTable): ) comments = columns.MarkdownColumn() tags = columns.TagColumn( - url_name='ipam:vrf_list' + url_name='ipam:routetarget_list' ) class Meta(NetBoxTable.Meta):