Fixes #8931: Copy assigned tenant when cloning a location

This commit is contained in:
jeremystretch 2022-04-06 20:01:09 -04:00
parent 85e65edb7d
commit 6760533a10
2 changed files with 3 additions and 3 deletions

View File

@ -2,12 +2,12 @@
## v3.2.1 (FUTURE) ## v3.2.1 (FUTURE)
### Bug Fixes (From Beta2) ### Bug Fixes
* [#8931](https://github.com/netbox-community/netbox/issues/8931) - Copy assigned tenant when cloning a location
* [#9057](https://github.com/netbox-community/netbox/issues/9057) - Fix missing instance counts for module types * [#9057](https://github.com/netbox-community/netbox/issues/9057) - Fix missing instance counts for module types
* [#9061](https://github.com/netbox-community/netbox/issues/9061) - Change inheritance order for DeviceComponentFilterSets * [#9061](https://github.com/netbox-community/netbox/issues/9061) - Change inheritance order for DeviceComponentFilterSets
--- ---
## v3.2.0 (2022-04-05) ## v3.2.0 (2022-04-05)

View File

@ -367,7 +367,7 @@ class Location(NestedGroupModel):
to='extras.ImageAttachment' to='extras.ImageAttachment'
) )
clone_fields = ['site', 'parent', 'description'] clone_fields = ['site', 'parent', 'tenant', 'description']
class Meta: class Meta:
ordering = ['site', 'name'] ordering = ['site', 'name']