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 66c13f13d..5dd83010f 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 @@ -247,7 +247,10 @@ 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._skippedService.hideSkipped() && bool(a.getCustomData('skipped'))), ); this._readableRedactionsService.setAnnotationsColor(standardEntries, 'annotationColor'); this._readableRedactionsService.setAnnotationsOpacity(standardEntries, true);