Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix search_help_text issue #5

Merged
merged 2 commits into from
Jun 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog
=========
3.0.7
-----
* Django 4.1.7 Compatible

3.0.6
-----
* Django 4.1.7 Compatible
Expand Down
2 changes: 1 addition & 1 deletion jet/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '3.0.6'
VERSION = '3.0.7'
3 changes: 2 additions & 1 deletion jet/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,12 @@ def get_model_queryset(admin_site, model, request, preserved_filters=None):

ChangeList = model_admin.get_changelist(request)

search_help_text = model_admin.search_help_text
change_list_args = [
request, model, list_display, list_display_links, list_filter,
model_admin.date_hierarchy, search_fields, list_select_related,
model_admin.list_per_page, model_admin.list_max_show_all,
model_admin.list_editable, model_admin]
model_admin.list_editable, model_admin, search_help_text]

try:
sortable_by = model_admin.get_sortable_by(request)
Expand Down