1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #2912: Cable type in filter form should be blank by default

This commit is contained in:
Jeremy Stretch
2019-02-20 10:21:34 -05:00
parent fadc9521f0
commit 161d9ed512
2 changed files with 2 additions and 1 deletions

View File

@@ -2753,7 +2753,7 @@ class CableFilterForm(BootstrapMixin, forms.Form):
label='Search'
)
type = forms.MultipleChoiceField(
choices=CABLE_TYPE_CHOICES,
choices=add_blank_choice(CABLE_TYPE_CHOICES),
required=False,
widget=StaticSelect2()
)