From 67e01e65b2671e296f6484f56d391b83f8a8b1f7 Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Mon, 10 Sep 2018 15:49:32 +0200 Subject: [PATCH] search: typo in ajax URL (#26278) --- combo/apps/search/templates/combo/search-cell.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combo/apps/search/templates/combo/search-cell.html b/combo/apps/search/templates/combo/search-cell.html index 243b73f..51d9b7c 100644 --- a/combo/apps/search/templates/combo/search-cell.html +++ b/combo/apps/search/templates/combo/search-cell.html @@ -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 }}() { -- 2.18.0