Fixes #3041: Fix form widget for bulk cable label update

This commit is contained in:
Jeremy Stretch 2019-04-04 12:43:14 -04:00
parent 7c6d2a6281
commit 1e160fd9e9
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
v2.5.10 (FUTURE)
## Bug Fixes
* [#3041](https://github.com/digitalocean/netbox/issues/3041) - Fix form widget for bulk cable label update
---
v2.5.9 (2019-04-01)
## Enhancements

View File

@ -2706,12 +2706,12 @@ class CableBulkEditForm(BootstrapMixin, BulkEditForm):
status = forms.ChoiceField(
choices=add_blank_choice(CONNECTION_STATUS_CHOICES),
required=False,
widget=StaticSelect2(),
initial=''
)
label = forms.CharField(
max_length=100,
required=False,
widget=StaticSelect2()
required=False
)
color = forms.CharField(
max_length=6,