diff --git a/apps/red-ui/src/app/models/file/file-data.model.ts b/apps/red-ui/src/app/models/file/file-data.model.ts index 1986cdca3..ad33405e8 100644 --- a/apps/red-ui/src/app/models/file/file-data.model.ts +++ b/apps/red-ui/src/app/models/file/file-data.model.ts @@ -35,7 +35,9 @@ export class FileDataModel { areDevFeaturesEnabled: boolean ): AnnotationData { const entries: RedactionLogEntryWrapper[] = this._convertData(dictionaryData); - let allAnnotations = entries.map(entry => AnnotationWrapper.fromData(entry)); + let allAnnotations = entries + .map(entry => AnnotationWrapper.fromData(entry)) + .filter(ann => !this.fileStatus.excludedPages.includes(ann.pageNumber)); if (!areDevFeaturesEnabled) { allAnnotations = allAnnotations.filter(annotation => !annotation.isFalsePositive);