diff --git a/apps/red-ui/src/app/screens/file/model/annotation.wrapper.ts b/apps/red-ui/src/app/screens/file/model/annotation.wrapper.ts index fc078773f..a9c7b5fcd 100644 --- a/apps/red-ui/src/app/screens/file/model/annotation.wrapper.ts +++ b/apps/red-ui/src/app/screens/file/model/annotation.wrapper.ts @@ -181,8 +181,13 @@ export class AnnotationWrapper { private static _setSuperType(annotationWrapper: AnnotationWrapper, redactionLogEntryWrapper: RedactionLogEntryWrapper) { if (redactionLogEntryWrapper.recommendation) { - annotationWrapper.superType = 'recommendation'; - return; + if (redactionLogEntryWrapper.redacted) { + annotationWrapper.superType = 'recommendation'; + return; + } else { + annotationWrapper.superType = 'ignore'; + return; + } } if (redactionLogEntryWrapper.status === 'DECLINED') {