From a0c935a0a931a6932a5d4fd596a58de97106ae36 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Sat, 15 Aug 2020 12:27:02 -0700 Subject: [PATCH] fix again Signed-off-by: Jane Sandberg --- .../app/staff/admin/local/course-reserves/course-list.component.html | 2 +- .../app/staff/admin/local/course-reserves/course-list.component.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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() + '}'}; } } -- 2.11.0