From 5ecd86231003dbe0c810fee71bc5248dfd94a838 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 3 Jul 2020 10:05:33 -0400 Subject: [PATCH] LP1886118 Staff catalog search format repair Fixes an error in the staff catalog search params builder with regard to encoding the search format. The 'format' param should be 'search_format'. Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- 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 7010d9eff3..57d9db6573 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 @@ -611,7 +611,7 @@ export class CatalogSearchContext { } if (ts.format) { - str += ' format(' + ts.format + ')'; + str += ' search_format(' + ts.format + ')'; } if (this.global) { -- 2.11.0