diff --git a/apps/red-ui/src/app/modules/dossier/screens/file-preview-screen/file-preview-screen.component.ts b/apps/red-ui/src/app/modules/dossier/screens/file-preview-screen/file-preview-screen.component.ts index be2831925..0c13435dd 100644 --- a/apps/red-ui/src/app/modules/dossier/screens/file-preview-screen/file-preview-screen.component.ts +++ b/apps/red-ui/src/app/modules/dossier/screens/file-preview-screen/file-preview-screen.component.ts @@ -477,15 +477,9 @@ export class FilePreviewScreenComponent extends AutoUnsubscribe implements OnIni private async _reloadFile(file: File): Promise { await this._loadFileData(file, true); - await this._cleanupAndRedrawManualAnnotations$().toPromise(); await this._stampPDF(); } - private _disableMultiSelectAndDocumentInfo(): void { - this.multiSelectService.deactivate(); - this.documentInfoService.hide(); - } - private _setHiddenPropertyToNewAnnotations(newAnnotations: AnnotationWrapper[], oldAnnotations: AnnotationWrapper[]) { newAnnotations.map(newAnnotation => { const oldAnnotation = oldAnnotations.find(a => a.annotationId === newAnnotation.annotationId);