From d43f1b0a802a23143be875046a63c9dc47475545 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Thu, 15 Feb 2024 16:02:38 +0200 Subject: [PATCH] RED-7980 - Not all unprocessed annotations are displayed correctly --- .../annotation-card/annotation-card.component.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/red-ui/src/app/modules/file-preview/components/annotation-card/annotation-card.component.ts b/apps/red-ui/src/app/modules/file-preview/components/annotation-card/annotation-card.component.ts index 8956b0d75..f62a1a538 100644 --- a/apps/red-ui/src/app/modules/file-preview/components/annotation-card/annotation-card.component.ts +++ b/apps/red-ui/src/app/modules/file-preview/components/annotation-card/annotation-card.component.ts @@ -25,9 +25,10 @@ export class AnnotationCardComponent { ((this.annotation.isModifyDictionary && !this.annotation.isRemovedLocally && !this.annotation.hasBeenForcedHint && - (this.annotation.lastManualChange !== ManualRedactionTypes.LEGAL_BASIS_CHANGE && - this.annotation.lastManualChange !== ManualRedactionTypes.RESIZE_LOCALLY)) || - this.annotation.type === ImageCategory.SIGNATURE) + this.annotation.lastManualChange !== ManualRedactionTypes.LEGAL_BASIS_CHANGE && + this.annotation.lastManualChange !== ManualRedactionTypes.RESIZE_LOCALLY) || + this.annotation.type === ImageCategory.SIGNATURE || + this.annotation.IMAGE_HINT) ); } }