RED-10440: fixed redacted image hint display color.

This commit is contained in:
Nicoleta Panaghiu 2024-11-11 16:47:08 +02:00
parent 1b0fe9d352
commit 01eda98415

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