From 856d37bdb868bc0d43650e0b4d6faa94f17dbcae Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Sun, 23 Sep 2018 22:19:32 +0200 Subject: [PATCH] Fix inconcistent search results due to search term normalization (#983) Closes #981 --- index.html | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 57828d39..e3f6e2cb 100644 --- a/index.html +++ b/index.html @@ -146,11 +146,11 @@ {% assign allIconNames = "" %} {% for icon in iconsArray %} {% assign iconArray = icon | split: "," %} - {% capture allIconNames %}{{ allIconNames }}"{{ iconArray[3] }}",{% endcapture %} + {% capture allIconNames %}{{ allIconNames }}"{{ iconArray[5] }}",{% endcapture %} {% endfor %} {% for icon in greyscaleIconsArray %} {% assign iconArray = icon | split: "," %} - {% capture allIconNames %}{{ allIconNames }}"{{ iconArray[1] }}"{% unless forloop.last %},{% endunless %}{% endcapture %} + {% capture allIconNames %}{{ allIconNames }}"{{ iconArray[5] }}"{% unless forloop.last %},{% endunless %}{% endcapture %} {% endfor %} @@ -191,12 +191,7 @@