Skip to content

Commit fedcbaf

Browse files
committed
Fixes #14620: Permit setting device type U height to 0 during bulk edit
1 parent 359c0cf commit fedcbaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/dcim/forms/bulk_edit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ class DeviceTypeBulkEditForm(NetBoxModelBulkEditForm):
412412
)
413413
u_height = forms.IntegerField(
414414
label=_('U height'),
415-
min_value=1,
415+
min_value=0,
416416
required=False
417417
)
418418
is_full_depth = forms.NullBooleanField(

0 commit comments

Comments
 (0)