Skip to content

Commit 9e09e46

Browse files
committed
Fixes #11522: Correct tag links under contact & tenant list views
1 parent ba0e9bb commit 9e09e46

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/release-notes/version-3.4.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* [#11483](https://github.com/netbox-community/netbox/issues/11483) - Apply configured formatting to custom date fields
2727
* [#11488](https://github.com/netbox-community/netbox/issues/11488) - Add missing `description` fields to several REST API serializers
2828
* [#11497](https://github.com/netbox-community/netbox/issues/11497) - Enforce `run_script` permission when executing scripts via REST API
29+
* [#11522](https://github.com/netbox-community/netbox/issues/11522) - Correct tag links under contact & tenant list views
2930

3031
---
3132

netbox/tenancy/tables/contacts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class ContactTable(NetBoxTable):
6262
verbose_name='Assignments'
6363
)
6464
tags = columns.TagColumn(
65-
url_name='tenancy:tenant_list'
65+
url_name='tenancy:contact_list'
6666
)
6767

6868
class Meta(NetBoxTable.Meta):

netbox/tenancy/tables/tenants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class TenantTable(ContactsColumnMixin, NetBoxTable):
4040
)
4141
comments = columns.MarkdownColumn()
4242
tags = columns.TagColumn(
43-
url_name='tenancy:contact_list'
43+
url_name='tenancy:tenant_list'
4444
)
4545

4646
class Meta(NetBoxTable.Meta):

0 commit comments

Comments
 (0)