From 3c9085df254bcd45d03c8e009bca5ef3bc2f6d0e 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 d94e5e2721..85355f8efd 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 @@ -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]; -- 2.11.0