From ae46ef7add40fa17f0fb28ca6b50bcc2300bc752 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 3 Mar 2023 15:21:02 -0800 Subject: [PATCH] Disable suggestions for read-only docs --- .../document-detail.component.ts | 35 +++++++++++-------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index 33a0d4114..8103cc374 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -306,20 +306,27 @@ export class DocumentDetailComponent ) }, }) - this.documentsService - .getSuggestions(doc.id) - .pipe(first()) - .subscribe({ - next: (result) => { - this.suggestions = result - }, - error: (error) => { - this.suggestions = null - this.toastService.showError( - $localize`Error retrieving suggestions` + ': ' + error.toString() - ) - }, - }) + if ( + this.permissionsService.currentUserHasObjectPermissions( + PermissionAction.Change, + doc + ) + ) { + this.documentsService + .getSuggestions(doc.id) + .pipe(first()) + .subscribe({ + next: (result) => { + this.suggestions = result + }, + error: (error) => { + this.suggestions = null + this.toastService.showError( + $localize`Error retrieving suggestions` + ': ' + error.toString() + ) + }, + }) + } this.title = this.documentTitlePipe.transform(doc.title) const docFormValues = Object.assign({}, doc) docFormValues['permissions_form'] = {