Skip to content

Commit

Permalink
Merge pull request #186 from YolCruz/develop
Browse files Browse the repository at this point in the history
fix: missing tailing slash
  • Loading branch information
asfaltboy authored Mar 20, 2024
2 parents f685995 + 9cd0818 commit 6279365
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ tests/db.sqlite*
/.venv
.vscode/settings.json
pyrightconfig.json
.ropeproject
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For release notes, see `Changelog <https://raw.githubusercontent.com/modlinltd/d
Requirements
============

- Django 2.2, >= 3.2 on Python 3.6+/PyPy3
- Django 2.2, >= 3.2 on Python 3.7+/PyPy3
- simplejson >= 3.6.5, < 4


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ var OperatorHandlers = function($) {
// initialize select2 widget and populate field choices
var field = $(elm).val();
var choices_url = ADVANCED_FILTER_CHOICES_LOOKUP_URL + (FORM_MODEL ||
MODEL_LABEL) + '/' + field;
MODEL_LABEL) + '/' + field + '/';
var input = $(elm).parents('tr').find('input.query-value');
input.select2("destroy");
$.get(choices_url, function(data) {
Expand Down

0 comments on commit 6279365

Please sign in to comment.