We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a12259f commit e259658Copy full SHA for e259658
netbox/utilities/querydict.py
@@ -55,7 +55,7 @@ def prepare_cloned_fields(instance):
55
for key, value in attrs.items():
56
if type(value) in (list, tuple):
57
params.extend([(key, v) for v in value])
58
- elif value not in (False, None):
+ elif value is not False and value is not None:
59
params.append((key, value))
60
else:
61
params.append((key, ''))
0 commit comments