Fix: use original object for children in tag list (#11127)

This commit is contained in:
shamoon
2025-10-22 09:42:39 -07:00
committed by GitHub
parent 78893292f8
commit 31cee7481b
3 changed files with 19 additions and 1 deletions

View File

@@ -145,6 +145,10 @@ export abstract class ManagementListComponent<T extends MatchingModel>
)
}
public getOriginalObject(object: T): T {
return this.unfilteredData.find((d) => d.id == object.id)
}
reloadData(extraParams: { [key: string]: any } = null) {
this.loading = true
this.clearSelection()