RED-7316: cleanup.

This commit is contained in:
Nicoleta Panaghiu 2024-01-15 11:20:40 +02:00
parent bf1eb887bb
commit c0413f1fd9

View File

@ -165,7 +165,6 @@ export class AnnotationDrawService {
annotation.setCustomData('redact-manager', 'true');
annotation.setCustomData('redaction', String(annotationWrapper.isRedacted));
annotation.setCustomData('skipped', String(annotationWrapper.isSkipped));
annotation.setCustomData('imported', String(annotationWrapper.imported));
annotation.setCustomData('changeLog', String(annotationWrapper.isChangeLogEntry));
annotation.setCustomData('changeLogRemoved', String(annotationWrapper.isRemoved));
annotation.setCustomData('opacity', String(annotation.Opacity));
@ -176,7 +175,6 @@ export class AnnotationDrawService {
const appliedRedactionColor = this._defaultColorsService.getColor(dossierTemplateId, 'appliedRedactionColor');
annotation.setCustomData('appliedRedactionColor', String(appliedRedactionColor));
console.log(annotation);
return annotation;
}