search: typo in ajax URL (#26278)

This commit is contained in:
Thomas NOËL 2018-09-10 15:49:32 +02:00
parent 88382da422
commit 67e01e65b2
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ $(function() {
{% for search_service in cell.search_services %}
var combo_search_results_{{ cell.pk }}_{{ forloop.counter }} = $('#combo-search-results-{{ cell.pk }}-{{ forloop.counter }}');
var xhr_{{ forloop.counter }} = null;
var url_{{ forloop.counter }} = '{% url 'combo-search-ajax-results' cell_pk=cell.pk service_slug=search_service.slug %}{% if initial_query_string %}?{{ intial_query_string }}{% endif %}';
var url_{{ forloop.counter }} = '{% url 'combo-search-ajax-results' cell_pk=cell.pk service_slug=search_service.slug %}{% if initial_query_string %}?{{ initial_query_string }}{% endif %}';
{% endfor %}
function combo_search_update_{{ cell.pk }}() {