Merge branch 'RED-10440' into 'master'

RED-10440: fixed redacted image hint display color.

See merge request redactmanager/red-ui!688
This commit is contained in:
Dan Percic 2024-11-11 16:05:38 +01:00
commit 931d311281

View File

@ -84,7 +84,10 @@ export class AnnotationWrapper implements IListable {
}
get isRedactedImageHint() {
return this.IMAGE_HINT && this.superType === SuperTypes.Redaction;
return (
(this.IMAGE_HINT && this.superType === SuperTypes.Redaction) ||
(this.IMAGE_HINT && this.superType === SuperTypes.ManualRedaction)
);
}
get isSkippedImageHint() {