From 2b0c74a4dc43367ae9eb8915b2a00d1027beded2 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Fri, 22 Jan 2021 16:13:01 -0500 Subject: [PATCH] Staff Client: kludge to allow multiple term searches from splash page --- Open-ILS/src/eg2/src/app/share/catalog/search-context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts b/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts index 7ee7ab1271..86455eaa79 100644 --- a/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts +++ b/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts @@ -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]; -- 2.11.0