From: Bill Erickson Date: Thu, 5 Aug 2021 16:05:14 +0000 (-0400) Subject: LP1936233 Row flair for modified items continued X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9830870b577e1c8ba8645ef72b38291a2fc2f25f;p=working%2FEvergreen.git LP1936233 Row flair for modified items continued Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts index 101b903682..a989e37f44 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts @@ -245,7 +245,8 @@ export class ItemStatusComponent implements OnInit, AfterViewInit { // Retain the original grid index value so row // selection can persist. updatedCopy._index = item._index; - updatedCopy.ischanged(item.ischanged()); + // Assume a reloaded copy was changed in some way. + updatedCopy.ischanged(true); this.itemService.scannedItems.splice(idx, 1, updatedCopy); } });