Performance fix: add paging for custom field select options (#10755)

This commit is contained in:
shamoon
2025-09-02 11:46:54 -07:00
committed by GitHub
parent 9463a8fd26
commit 80595899c1
4 changed files with 124 additions and 14 deletions

View File

@@ -147,9 +147,13 @@ export abstract class EditDialogComponent<
)
}
protected getFormValues(): any {
return Object.assign({}, this.objectForm.value)
}
save() {
this.error = null
const formValues = Object.assign({}, this.objectForm.value)
const formValues = this.getFormValues()
const permissionsObject: PermissionsFormObject =
this.objectForm.get('permissions_form')?.value
if (permissionsObject) {