Staff Client: kludge to allow multiple term searches from splash page
authorChris Sharp <csharp@georgialibraries.org>
Fri, 22 Jan 2021 21:13:01 +0000 (16:13 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Wed, 15 Sep 2021 18:48:44 +0000 (14:48 -0400)
Open-ILS/src/eg2/src/app/share/catalog/search-context.ts

index 7ee7ab1..86455ea 100644 (file)
@@ -518,7 +518,7 @@ export class CatalogSearchContext {
 
     compileBoolQuerySet(idx: number): string {
         const ts = this.termSearch;
-        let query = ts.query[idx];
+        let query = decodeURIComponent(ts.query[idx]);
         const joinOp = ts.joinOp[idx];
         const matchOp = ts.matchOp[idx];
         let fieldClass = ts.fieldClass[idx];