mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-11 00:57:09 +01:00
Update document-notes.component.ts
This commit is contained in:
parent
e6df581909
commit
646db73061
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ export class DocumentNotesComponent extends ComponentWithPermissions {
|
||||||
|
|
||||||
displayName(note: PaperlessDocumentNote): string {
|
displayName(note: PaperlessDocumentNote): string {
|
||||||
if (!note.user) return ''
|
if (!note.user) return ''
|
||||||
const user = this.users.find((u) => u.id === note.user)
|
const user = this.users?.find((u) => u.id === note.user)
|
||||||
if (!user) return ''
|
if (!user) return ''
|
||||||
const nameComponents = []
|
const nameComponents = []
|
||||||
if (user.first_name) nameComponents.unshift(user.first_name)
|
if (user.first_name) nameComponents.unshift(user.first_name)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue