From: Tiffany Little Date: Sun, 15 Jan 2023 21:44:52 +0000 (-0500) Subject: LP2002920: Angular acq batch updater now updates the circ modifier X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=78d1a7b018f296552a37b401d9f455bf82fdda02;p=evergreen%2Fpines.git LP2002920: Angular acq batch updater now updates the circ modifier Signed-off-by: Tiffany Little Signed-off-by: Christine Morgan Signed-off-by: Galen Charlton --- 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; }