Merge pull request #38325 from frappe/ankush-patch-1
fix: Skip nulls in `client.get`
This commit is contained in:
commit
5f1d4e9488
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ def get(
|
|||
doc.check_permission()
|
||||
doc.apply_fieldlevel_read_permissions()
|
||||
|
||||
return doc.as_dict()
|
||||
return doc.as_dict(no_nulls=True)
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue