diff --git a/apps/red-ui/src/app/models/file/annotation.wrapper.ts b/apps/red-ui/src/app/models/file/annotation.wrapper.ts index 32a7c15c2..2af861b76 100644 --- a/apps/red-ui/src/app/models/file/annotation.wrapper.ts +++ b/apps/red-ui/src/app/models/file/annotation.wrapper.ts @@ -321,6 +321,9 @@ export class AnnotationWrapper implements IListable, Record { annotationWrapper.hasBeenRemovedByManualOverride = !!redactionLogEntry.manualChanges?.find( c => c.manualRedactionType === ManualRedactionType.REMOVE_LOCALLY && c.annotationStatus === LogEntryStatus.APPROVED, ); + annotationWrapper.legalBasisChangeValue = redactionLogEntry.manualChanges?.find( + c => c.manualRedactionType === ManualRedactionType.LEGAL_BASIS_CHANGE && c.annotationStatus === LogEntryStatus.REQUESTED, + )?.propertyChanges.legalBasis; this._createContent(annotationWrapper, redactionLogEntry); this._setSuperType(annotationWrapper, redactionLogEntry);