From d97fedfcd3377c34f85737cc20b1960b4f5ac3a4 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 10 Sep 2020 17:59:23 -0400 Subject: [PATCH] LP1888723 Item attrs edit owning lib change repair Fixes a thinko in the item update code when changing the owning lib for an item. A value must be passed to copy.ischange(...) to have any effect. Signed-off-by: Bill Erickson Signed-off-by: Ruth Frasur Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.ts index 25a7b0d89b..fdd8365910 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.ts @@ -336,7 +336,7 @@ export class CopyAttrsComponent implements OnInit, AfterViewInit { } copy.call_number(newVol); - copy.ischanged(); + copy.ischanged(true); this.context.removeCopyNode(copy.id()); this.context.findOrCreateCopyNode(copy); -- 2.11.0