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:
		@@ -29,6 +29,7 @@
 | 
			
		||||
* [#12550](https://github.com/netbox-community/netbox/issues/12550) - Fix rear port selection widget under front port creation form
 | 
			
		||||
* [#12570](https://github.com/netbox-community/netbox/issues/12570) - Disable ordering of synchronized object tables by the "synced" attribute
 | 
			
		||||
* [#12594](https://github.com/netbox-community/netbox/issues/12594) - Enable selecting config context as object type in object counts dashboard widget
 | 
			
		||||
* [#12642](https://github.com/netbox-community/netbox/issues/12642) - Fix bulk tenant assignment via cluster import form
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user