Skip to content

Commit d0295f0

Browse files
committed
Fixes #4089: Selection of power outlet type during bulk update is optional
1 parent 3262314 commit d0295f0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/release-notes/version-2.7.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v2.7.5 (FUTURE)
2+
3+
## Bug Fixes
4+
5+
* [#4089](https://github.com/netbox-community/netbox/issues/4089) - Selection of power outlet type during bulk update is optional
6+
17
# v2.7.4 (2020-02-04)
28

39
## Enhancements

netbox/dcim/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2500,7 +2500,7 @@ class PowerOutletBulkEditForm(BootstrapMixin, AddRemoveTagsForm, BulkEditForm):
25002500
widget=forms.MultipleHiddenInput()
25012501
)
25022502
type = forms.ChoiceField(
2503-
choices=PowerOutletTypeChoices,
2503+
choices=add_blank_choice(PowerOutletTypeChoices),
25042504
required=False
25052505
)
25062506
feed_leg = forms.ChoiceField(

0 commit comments

Comments
 (0)