diff --git a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts index b08ff518d..19753d7cd 100644 --- a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts +++ b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts @@ -453,13 +453,13 @@ export class FilePreviewScreenComponent implements OnInit, OnDestroy { public assignReviewer() { this._fileActionService.assignProjectReviewer(this.fileData.fileStatus, async () => { - await this._loadFileData().toPromise(); + this.canPerformAnnotationActions = this.permissionsService.canPerformAnnotationActions(); }); } public assignToMe() { this._fileActionService.assignToMe(this.fileData.fileStatus, async () => { - await this._loadFileData().toPromise(); + this.canPerformAnnotationActions = this.permissionsService.canPerformAnnotationActions(); }); } }