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 0ea19d63e..607c8e3c9 100644 --- a/apps/red-ui/src/app/models/file/annotation.wrapper.ts +++ b/apps/red-ui/src/app/models/file/annotation.wrapper.ts @@ -232,7 +232,7 @@ export class AnnotationWrapper { get legalBasis() { return this.legalBasisChangeValue || this.legalBasisValue; } - + redactionLogEntry: any; static fromData(redactionLogEntry?: RedactionLogEntry) { const annotationWrapper = new AnnotationWrapper(); @@ -281,6 +281,7 @@ export class AnnotationWrapper { this._handleRecommendations(annotationWrapper, redactionLogEntry); annotationWrapper.typeLabel = annotationTypesTranslations[annotationWrapper.superType]; + annotationWrapper.redactionLogEntry = redactionLogEntry; return annotationWrapper; }