From 1bf89c7678ec9fc276292a53a57d89ac24df143c Mon Sep 17 00:00:00 2001 From: Kyle Huckins Date: Fri, 8 Apr 2022 17:43:13 +0000 Subject: [PATCH] lp1915556 edit_date should be edit_type Signed-off-by: Kyle Huckins --- .../admin/local/course-reserves/course-associate-material.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-material.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-material.component.ts index 31da01a6ef..9e280b59be 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-material.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-material.component.ts @@ -124,7 +124,7 @@ export class CourseAssociateMaterialComponent extends DialogComponent implements // Edit each IDL thing one at a time const editOneThing = (item: IdlObject) => { if (!item) { return; } - item.edit_date(new Date().toISOString); + item.edit_time(new Date().toISOString); this.showEditDialog(item).then( () => editOneThing(itemFields.shift())); -- 2.11.0