From: Jane Sandberg Date: Sat, 15 Aug 2020 19:27:02 +0000 (-0700) Subject: fix again X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a0c935a0a931a6932a5d4fd596a58de97106ae36;p=working%2FEvergreen.git fix again Signed-off-by: Jane Sandberg --- diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.html b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.html index c381d1b882..e8e470ad9e 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.html +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.html @@ -53,7 +53,7 @@ - + Terms taught diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts index 118665bbe8..5567b2d26b 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts @@ -46,7 +46,7 @@ export class CourseListComponent implements OnInit { currentMaterials: any[] = []; search_value = ''; - acmtcmQueryParams: (row: any) => string; + acmtcmQueryParams: (row: any) => {gridFilters: string}; constructor( private courseSvc: CourseService, @@ -64,7 +64,7 @@ export class CourseListComponent implements OnInit { }); this.acmtcmQueryParams = (row: any) => { - return '{course:' + row.id() + '}'; + return {gridFilters: '{course:' + row.id() + '}'}; } }