corrections

This commit is contained in:
Timo Bejan 2022-01-28 17:05:36 +02:00
parent 417010ae9b
commit 13c6ec3516

View File

@ -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;
}