diff --git a/netbox/dcim/forms.py b/netbox/dcim/forms.py index 86da72a88..2bb72afc1 100644 --- a/netbox/dcim/forms.py +++ b/netbox/dcim/forms.py @@ -2703,6 +2703,12 @@ class InventoryItemFilterForm(BootstrapMixin, forms.Form): to_field_name='slug', null_label='-- None --' ) + discovered = forms.NullBooleanField( + required=False, + widget=forms.Select( + choices=BOOLEAN_WITH_BLANK_CHOICES + ) + ) #