Fix: doc link documents search should exclude null (#8064)

This commit is contained in:
shamoon 2024-10-27 17:13:29 -07:00 committed by GitHub
parent 605aa50b00
commit 1888ee6a3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,9 +107,9 @@ export class CustomFieldDisplayComponent implements OnInit, OnDestroy {
.getFew(this.value, { fields: 'id,title' })
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe((result: Results<Document>) => {
this.docLinkDocuments = this.value.map((id) =>
result.results.find((d) => d.id === id)
)
this.docLinkDocuments = this.value
.map((id) => result.results.find((d) => d.id === id))
.filter((d) => d)
})
}