From 4ab6aca2ec806cafc60908b0e0c3238b28849be1 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 7 Oct 2019 14:06:41 -0400 Subject: [PATCH] Fixes #3575: Restore label for comments field when bulk editing circuits --- CHANGELOG.md | 3 ++- netbox/circuits/forms.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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: