Disable suggestions for read-only docs

This commit is contained in:
shamoon 2023-03-03 15:21:02 -08:00
parent ef627d53e5
commit ae46ef7add

View File

@ -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'] = {