File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
netbox/utilities/templatetags Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 1717* [ #7401 ] ( https://github.com/netbox-community/netbox/issues/7401 ) - Pin ` jsonschema ` package to v3.2.0 to fix REST API docs rendering
1818* [ #7411 ] ( https://github.com/netbox-community/netbox/issues/7411 ) - Fix exception in UI when adding member devices to virtual chassis
1919* [ #7412 ] ( https://github.com/netbox-community/netbox/issues/7412 ) - Fix exception in UI when adding child device to device bay
20+ * [ #7417 ] ( https://github.com/netbox-community/netbox/issues/7417 ) - Prevent exception when filtering objects list by invalid tag
2021
2122---
2223
Original file line number Diff line number Diff line change @@ -398,6 +398,9 @@ def applied_filters(form, query_params):
398398
399399 applied_filters = []
400400 for filter_name in form .changed_data :
401+ if filter_name not in form .cleaned_data :
402+ continue
403+
401404 querydict = query_params .copy ()
402405 if filter_name not in querydict :
403406 continue
You can’t perform that action at this time.
0 commit comments