Просмотр исходного кода

Fixes #10562: Correct URL for contacts table tags column

jeremystretch 3 лет назад
Родитель
Сommit
bdefd8ea8c
2 измененных файлов с 2 добавлено и 1 удалено
  1. 1 0
      docs/release-notes/version-3.3.md
  2. 1 1
      netbox/tenancy/tables/tenants.py

+ 1 - 0
docs/release-notes/version-3.3.md

@@ -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
 
 ---
 

+ 1 - 1
netbox/tenancy/tables/tenants.py

@@ -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):