Projet

Général

Profil

0001-search-typo-in-ajax-URL-26278.patch

Thomas Noël, 10 septembre 2018 15:49

Télécharger (1,26 ko)

Voir les différences:

Subject: [PATCH] search: typo in ajax URL (#26278)

 combo/apps/search/templates/combo/search-cell.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/search/templates/combo/search-cell.html
18 18
  {% for search_service in cell.search_services %}
19 19
  var combo_search_results_{{ cell.pk }}_{{ forloop.counter }} = $('#combo-search-results-{{ cell.pk }}-{{ forloop.counter }}');
20 20
  var xhr_{{ forloop.counter }} = null;
21
  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 %}';
21
  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 %}';
22 22
  {% endfor %}
23 23

  
24 24
  function combo_search_update_{{ cell.pk }}() {
25
-