From 0ba8d54ca2f61e8feaf74a98cfae29715ddd3968 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Mon, 22 May 2023 11:55:28 +0300 Subject: [PATCH] RED-6730 - Annotation appears as redaction instead of skipped/recommendation(corner case) --- apps/red-ui/src/app/models/file/annotation.wrapper.ts | 2 +- 1 file changed, 1 insertion(+), 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 24215b242..2af491b38 100644 --- a/apps/red-ui/src/app/models/file/annotation.wrapper.ts +++ b/apps/red-ui/src/app/models/file/annotation.wrapper.ts @@ -509,7 +509,7 @@ export class AnnotationWrapper implements IListable, Record { if (lastManualChange.processed) { switch (lastManualChange.annotationStatus) { case LogEntryStatuses.APPROVED: - return redactionLogEntry.recommendation ? SuperTypes.Recommendation : SuperTypes.Hint; + return redactionLogEntry.recommendation ? SuperTypes.Recommendation : SuperTypes.Skipped; case LogEntryStatuses.DECLINED: return isHintDictionary ? SuperTypes.Hint : SuperTypes.Skipped; case LogEntryStatuses.REQUESTED: