Skip to content

Commit

Permalink
Fixes #14620: Permit setting device type U height to 0 during bulk edit
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Dec 28, 2023
1 parent 359c0cf commit fedcbaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/dcim/forms/bulk_edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class DeviceTypeBulkEditForm(NetBoxModelBulkEditForm):
)
u_height = forms.IntegerField(
label=_('U height'),
min_value=1,
min_value=0,
required=False
)
is_full_depth = forms.NullBooleanField(
Expand Down

0 comments on commit fedcbaf

Please sign in to comment.