You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If you have a field which should be null, i.e. type "Is NULL", no matter what you select as the key (which should be something, it can't empty, huh?), the key gets replaced with "null" which translates to Python with "None", rather than "true", which becomes "True" in Django, and that is what we want.
Describe the bug
If you have a field which should be
null
, i.e. type "Is NULL", no matter what you select as the key (which should be something, it can't empty, huh?), the key gets replaced with "null" which translates to Python with "None", rather than "true", which becomes "True" in Django, and that is what we want.See https://docs.djangoproject.com/en/3.0/ref/models/querysets/#isnull for more information.
I think this is the issue:
django-advanced-filters/advanced_filters/forms.py
Lines 94 to 95 in 90a8ed5
The text was updated successfully, but these errors were encountered: