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:
commit
5472ff127b
@ -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() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user