From 483e4a9cb8030571697bb1790560e2d1dd6d5c10 Mon Sep 17 00:00:00 2001 From: tdro Date: Fri, 6 May 2022 05:44:08 -0400 Subject: themes/default/layouts: Remove garbled entities --- static/js/fixedsearch.ts | 7 ++----- static/js/index.js | 6 ++---- 2 files changed, 4 insertions(+), 9 deletions(-) (limited to 'static') diff --git a/static/js/fixedsearch.ts b/static/js/fixedsearch.ts index 3788cb3..2b0abda 100644 --- a/static/js/fixedsearch.ts +++ b/static/js/fixedsearch.ts @@ -170,17 +170,14 @@ } else { dropdown.removeAttribute("hidden"); for (const string in results.slice(0, 10)) { - const decode = document.createElement("textarea"); - decode.innerHTML = results[string].obj.title; - let highlight = fuzzysort.highlight( - fuzzysort.single(term, decode.value), + fuzzysort.single(term, results[string].obj.title), "", "", ); if (highlight === null) { - highlight = decode.value; + highlight = results[string].obj.title; } items = items + diff --git a/static/js/index.js b/static/js/index.js index 7fc5785..62615e5 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -408,11 +408,9 @@ } else { dropdown.removeAttribute("hidden"); for(const string in results.slice(0, 10)){ - const decode = document.createElement("textarea"); - decode.innerHTML = results[string].obj.title; - let highlight = fuzzysort.highlight(fuzzysort.single(term, decode.value), "", ""); + let highlight = fuzzysort.highlight(fuzzysort.single(term, results[string].obj.title), "", ""); if (highlight === null) { - highlight = decode.value; + highlight = results[string].obj.title; } items = items + `
  • -- cgit v1.2.3