RED-7761 - Missing fields in Edit Dialog for Signature (redacted images)

This commit is contained in:
Valentin Mihai 2023-11-06 13:43:17 +02:00
parent f56d0e5542
commit 03f5c9c90f

View File

@ -45,7 +45,8 @@ export class EditRedactionDialogComponent
this.isModifyDictionary = annotations.every(annotation => annotation.isModifyDictionary);
this.isManualRedaction = annotations.every(annotation => annotation.type === SuperTypes.ManualRedaction);
this.isHint = annotations.every(annotation => annotation.HINT);
this.showExtras = !(this.isImage || this.isHint);
const isRedacted = annotations.every(annotation => annotation.isRedacted);
this.showExtras = !((this.isImage && !isRedacted) || this.isHint);
}
get displayedDictionaryLabel() {