diff --git a/apps/red-ui/src/app/state/app-state.service.ts b/apps/red-ui/src/app/state/app-state.service.ts index 2970dd970..d68fe4843 100644 --- a/apps/red-ui/src/app/state/app-state.service.ts +++ b/apps/red-ui/src/app/state/app-state.service.ts @@ -283,11 +283,10 @@ export class AppStateService { } project.files = files.map((f) => new FileStatusWrapper(f, this._userService.getNameForId(f.currentReviewer))); - // this._automaticallyReanalyseErrorFiles(project); this._computeStats(); - // fileReanalysedEvent.forEach((file) => this.fileReanalysed.emit(file)); - // fileStatusChangedEvent.forEach((file) => this.fileChanged.emit(file)); + fileReanalysedEvent.forEach((file) => this.fileReanalysed.emit(file)); + fileStatusChangedEvent.forEach((file) => this.fileChanged.emit(file)); return files; }