We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a23756 commit 5671644Copy full SHA for 5671644
netbox/utilities/forms/fields/dynamic.py
@@ -43,7 +43,7 @@ def get_bound_field(self, form, field_name):
43
44
if data is not None:
45
self.choices = [
46
- choice for choice in self.choices if choice[0] in data
+ choice for choice in self.choices if choice[0] and choice[0] in data
47
]
48
49
return bound_field
0 commit comments