From: Tiffany Little Date: Sun, 15 Jan 2023 21:44:52 +0000 (-0500) Subject: LP2002920 Batch updater not updating circ mod X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0d369d2591d48c1c0723d43d13f16877e9bf3208;p=evergreen%2Fpines.git LP2002920 Batch updater not updating circ mod Signed-off-by: Tiffany Little --- diff --git a/Open-ILS/src/eg2/src/app/staff/acq/lineitem/batch-update-copies-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/batch-update-copies-dialog.component.ts index 0ca7575463..49c8fa8a01 100644 --- a/Open-ILS/src/eg2/src/app/staff/acq/lineitem/batch-update-copies-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/batch-update-copies-dialog.component.ts @@ -81,7 +81,7 @@ export class BatchUpdateCopiesDialogComponent extends DialogComponent { changes['fund'] = this.templateCopy.fund(); } if (this.templateCopy.circ_modifier()) { - changes['circ_modifier'] = this.templateCopy.owning_lib(); + changes['circ_modifier'] = this.templateCopy.circ_modifier(); } return changes; }