Fixes #10562: Correct URL for contacts table tags column

This commit is contained in:
jeremystretch 2022-10-05 08:13:33 -04:00
parent 03946f2ca8
commit bdefd8ea8c
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@
* [#10513](https://github.com/netbox-community/netbox/issues/10513) - Disable the reassignment of a module to a new device
* [#10517](https://github.com/netbox-community/netbox/issues/10517) - Automatically inherit site assignment from cluster when creating a virtual machine
* [#10559](https://github.com/netbox-community/netbox/issues/10559) - Permit the pinning of a VM to a particular device within a cluster which has no site assignment
* [#10562](https://github.com/netbox-community/netbox/issues/10562) - Correct URL for contacts table tags column
---

View File

@ -42,7 +42,7 @@ class TenantTable(NetBoxTable):
linkify_item=True
)
tags = columns.TagColumn(
url_name='tenancy:tenant_list'
url_name='tenancy:contact_list'
)
class Meta(NetBoxTable.Meta):