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>
Fri, 22 Jan 2021 21:13:01 +0000 (16:13 -0500)
Open-ILS/src/eg2/src/app/share/catalog/search-context.ts

index d94e5e2..85355f8 100644 (file)
@@ -510,7 +510,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];