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) ); } }