From 77efc6ced78b2edd32d63eb22624860b7611ba50 Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 18 Feb 2021 18:48:30 +0200 Subject: [PATCH] changed default redaction and preview color --- .../src/app/screens/file/service/annotation-draw.service.ts | 2 +- apps/red-ui/src/app/state/app-state.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/red-ui/src/app/screens/file/service/annotation-draw.service.ts b/apps/red-ui/src/app/screens/file/service/annotation-draw.service.ts index c531aa6ef..aa30fea72 100644 --- a/apps/red-ui/src/app/screens/file/service/annotation-draw.service.ts +++ b/apps/red-ui/src/app/screens/file/service/annotation-draw.service.ts @@ -89,7 +89,7 @@ export class AnnotationDrawService { highlight.setCustomData('skipped', annotationWrapper.isSkipped); highlight.setCustomData('changeLog', annotationWrapper.isChangeLogEntry); highlight.setCustomData('changeLogRemoved', annotationWrapper.isChangeLogRemoved); - highlight.setCustomData('redactionColor', this.getColor(activeViewer, 'skipped', 'skipped')); + highlight.setCustomData('redactionColor', this.getColor(activeViewer, 'redaction', 'redaction')); highlight.setCustomData('annotationColor', this.getColor(activeViewer, annotationWrapper.superType, annotationWrapper.dictionary)); return highlight; diff --git a/apps/red-ui/src/app/state/app-state.service.ts b/apps/red-ui/src/app/state/app-state.service.ts index 6c6824575..89adef6f9 100644 --- a/apps/red-ui/src/app/state/app-state.service.ts +++ b/apps/red-ui/src/app/state/app-state.service.ts @@ -554,7 +554,7 @@ export class AppStateService { hint: true }; dictionaryData['redaction'] = { - hexColor: '#283241', + hexColor: '#cccccc', type: 'redaction', virtual: true };