diff --git a/docs/release-notes/version-3.4.md b/docs/release-notes/version-3.4.md index 69d9c4e76..21c2e700a 100644 --- a/docs/release-notes/version-3.4.md +++ b/docs/release-notes/version-3.4.md @@ -26,6 +26,7 @@ * [#11483](https://github.com/netbox-community/netbox/issues/11483) - Apply configured formatting to custom date fields * [#11488](https://github.com/netbox-community/netbox/issues/11488) - Add missing `description` fields to several REST API serializers * [#11497](https://github.com/netbox-community/netbox/issues/11497) - Enforce `run_script` permission when executing scripts via REST API +* [#11522](https://github.com/netbox-community/netbox/issues/11522) - Correct tag links under contact & tenant list views --- diff --git a/netbox/tenancy/tables/contacts.py b/netbox/tenancy/tables/contacts.py index cdc21f30b..d906f0c63 100644 --- a/netbox/tenancy/tables/contacts.py +++ b/netbox/tenancy/tables/contacts.py @@ -62,7 +62,7 @@ class ContactTable(NetBoxTable): verbose_name='Assignments' ) tags = columns.TagColumn( - url_name='tenancy:tenant_list' + url_name='tenancy:contact_list' ) class Meta(NetBoxTable.Meta): diff --git a/netbox/tenancy/tables/tenants.py b/netbox/tenancy/tables/tenants.py index 9c404fb4b..67f69ef5e 100644 --- a/netbox/tenancy/tables/tenants.py +++ b/netbox/tenancy/tables/tenants.py @@ -40,7 +40,7 @@ class TenantTable(ContactsColumnMixin, NetBoxTable): ) comments = columns.MarkdownColumn() tags = columns.TagColumn( - url_name='tenancy:contact_list' + url_name='tenancy:tenant_list' ) class Meta(NetBoxTable.Meta):