From c0413f1fd90ea45943087df3bca3dcc18ec2cdd2 Mon Sep 17 00:00:00 2001 From: Nicoleta Panaghiu Date: Mon, 15 Jan 2024 11:20:40 +0200 Subject: [PATCH] RED-7316: cleanup. --- .../app/modules/pdf-viewer/services/annotation-draw.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts b/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts index d68109a51..ecfde97ac 100644 --- a/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts +++ b/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts @@ -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; }