1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #12642: Fix bulk tenant assignment via cluster import form

This commit is contained in:
jeremystretch
2023-05-22 13:07:40 -04:00
parent c8d9a3b4eb
commit fa3bedb947
2 changed files with 2 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ class ClusterImportForm(NetBoxModelImportForm):
class Meta:
model = Cluster
fields = ('name', 'type', 'group', 'status', 'site', 'description', 'comments', 'tags')
fields = ('name', 'type', 'group', 'status', 'site', 'tenant', 'description', 'comments', 'tags')
class VirtualMachineImportForm(NetBoxModelImportForm):