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 63f89aeb6..d3f6dcda4 100644 --- a/apps/red-ui/src/app/models/file/annotation.wrapper.ts +++ b/apps/red-ui/src/app/models/file/annotation.wrapper.ts @@ -79,11 +79,11 @@ export class AnnotationWrapper { } get canBeMarkedAsFalsePositive() { - return this.superType === 'redaction' && (this.hasTextAfter || this.hasTextBefore); + return this.superType === 'redaction' && (this.hasTextAfter || this.hasTextBefore) && !this.isImage; } get canBeMarkedAsFalsePositiveWithTextOnly() { - return !this.canBeMarkedAsFalsePositive && (this.isRecommendation || this.superType === 'redaction'); + return !this.canBeMarkedAsFalsePositive && (this.isRecommendation || this.superType === 'redaction') && !this.isImage; } get isSuperTypeBasedColor() {