diff --git a/CHANGELOG.md b/CHANGELOG.md index 221bf3e35..3048065ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ v2.6.6 (FUTURE) ## Bug Fixes -* [#3574](https://github.com/netbox-community/netbox/issues/3574) - Change `device` to `parent` in interface editing vlan filtering logic +* [#3574](https://github.com/netbox-community/netbox/issues/3574) - Change `device` to `parent` in interface editing VLAN filtering logic +* [#3575](https://github.com/netbox-community/netbox/issues/3575) - Restore label for comments field when bulk editing circuits ## Enhancements diff --git a/netbox/circuits/forms.py b/netbox/circuits/forms.py index b4f6ac06c..dfe4f46e4 100644 --- a/netbox/circuits/forms.py +++ b/netbox/circuits/forms.py @@ -256,7 +256,8 @@ class CircuitBulkEditForm(BootstrapMixin, AddRemoveTagsForm, CustomFieldBulkEdit required=False ) comments = CommentField( - widget=SmallTextarea + widget=SmallTextarea, + label='Comments' ) class Meta: