diff --git a/apps/red-ui/src/app/modules/file-preview/file-preview-screen.component.ts b/apps/red-ui/src/app/modules/file-preview/file-preview-screen.component.ts index 9b6942b1b..e2695e16d 100644 --- a/apps/red-ui/src/app/modules/file-preview/file-preview-screen.component.ts +++ b/apps/red-ui/src/app/modules/file-preview/file-preview-screen.component.ts @@ -222,7 +222,7 @@ export class FilePreviewScreenComponent .filter(a => !bool(a.getCustomData('changeLogRemoved')) && !this._annotationManager.isHidden(a.Id)) .filter(a => !ocrAnnotationIds.includes(a.Id)); const nonStandardEntries = annotations.filter( - a => bool(a.getCustomData('changeLogRemoved')) && this._annotationManager.isHidden(a.Id), + a => bool(a.getCustomData('changeLogRemoved')) || this._annotationManager.isHidden(a.Id), ); this._setAnnotationsOpacity(standardEntries, true); this._annotationManager.show(standardEntries);