From a5b99e7148eada4036d36054ec6b2b7d826c2283 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Thu, 30 Sep 2021 12:29:08 -0400 Subject: [PATCH] Fixes #7412: Fix exception in UI when adding child device to device bay --- docs/release-notes/version-3.0.md | 1 + netbox/dcim/forms/models.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index b1e1522fe..0ad55a343 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -9,6 +9,7 @@ * [#7397](https://github.com/netbox-community/netbox/issues/7397) - Fix AttributeError exception when rendering export template for devices via REST API * [#7401](https://github.com/netbox-community/netbox/issues/7401) - Pin `jsonschema` package to v3.2.0 to fix REST API docs rendering * [#7411](https://github.com/netbox-community/netbox/issues/7411) - Fix exception in UI when adding member devices to virtual chassis +* [#7412](https://github.com/netbox-community/netbox/issues/7412) - Fix exception in UI when adding child device to device bay --- diff --git a/netbox/dcim/forms/models.py b/netbox/dcim/forms/models.py index 90023f0fe..009e1fe3f 100644 --- a/netbox/dcim/forms/models.py +++ b/netbox/dcim/forms/models.py @@ -38,6 +38,7 @@ __all__ = ( 'LocationForm', 'ManufacturerForm', 'PlatformForm', + 'PopulateDeviceBayForm', 'PowerFeedForm', 'PowerOutletForm', 'PowerOutletTemplateForm',