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 bfe55c2dfc
commit 45a41bbee7
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: