Skip to content

Commit

Permalink
fix: missing tailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
YolCruz committed Oct 5, 2023
1 parent 405670f commit 4358d32
Showing 1 changed file with 1 addition and 1 deletion.
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 4358d32

Please sign in to comment.