From: Chris Sharp Date: Fri, 22 Jan 2021 21:13:01 +0000 (-0500) Subject: Staff Client: kludge to allow multiple term searches from splash page X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3c9085df254bcd45d03c8e009bca5ef3bc2f6d0e;p=evergreen%2Fpines.git Staff Client: kludge to allow multiple term searches from splash page --- 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];