瀏覽代碼

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

Jeremy Stretch 6 年之前
父節點
當前提交
4ab6aca2ec
共有 2 個文件被更改,包括 4 次插入2 次删除
  1. 2 1
      CHANGELOG.md
  2. 2 1
      netbox/circuits/forms.py

+ 2 - 1
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
 

+ 2 - 1
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: