Merge branch 'VM/RED-7761' into 'master'

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

Closes RED-7761

See merge request redactmanager/red-ui!177
This commit is contained in:
Dan Percic 2023-11-06 12:47:03 +01:00
commit 5472ff127b

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() {