Fix: fix doc link input (#9533)

This commit is contained in:
shamoon
2025-03-31 19:35:05 -07:00
committed by GitHub
parent 32a7f9cd5a
commit eb481ac1c0
4 changed files with 17 additions and 9 deletions

View File

@@ -71,6 +71,10 @@ export class DocumentLinkComponent
@Input()
placeholder: string = $localize`Search for documents`
get selectedDocumentIDs(): number[] {
return this.selectedDocuments.map((d) => d.id)
}
constructor(private documentsService: DocumentService) {
super()
}