From 13c6ec351610143b8366552fcf6b61fbda874d4f Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Fri, 28 Jan 2022 17:05:36 +0200 Subject: [PATCH] corrections --- apps/red-ui/src/app/models/file/annotation.wrapper.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }