1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #3575: Restore label for comments field when bulk editing circuits

This commit is contained in:
Jeremy Stretch
2019-10-07 14:06:41 -04:00
parent 04d9889127
commit 4ab6aca2ec
2 changed files with 4 additions and 2 deletions

View File

@@ -256,7 +256,8 @@ class CircuitBulkEditForm(BootstrapMixin, AddRemoveTagsForm, CustomFieldBulkEdit
required=False
)
comments = CommentField(
widget=SmallTextarea
widget=SmallTextarea,
label='Comments'
)
class Meta: