fix: Set value as string for property setter
This commit is contained in:
parent
9e6889fc6d
commit
5e57a9004d
1 changed files with 1 additions and 1 deletions
|
|
@ -329,7 +329,7 @@ def get_link_title_doctypes():
|
|||
dts = frappe.get_all("DocType", {"show_title_field_in_link": 1})
|
||||
custom_dts = frappe.get_all(
|
||||
"Property Setter",
|
||||
{"property": "show_title_field_in_link", "value": 1},
|
||||
{"property": "show_title_field_in_link", "value": "1"},
|
||||
["doc_type as name"],
|
||||
)
|
||||
return [d.name for d in dts + custom_dts if d]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue