From 5e57a9004d68a18c4c19fc89753152e0824a5216 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Tue, 15 Feb 2022 10:21:40 +0530 Subject: [PATCH] fix: Set value as string for property setter --- frappe/boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/boot.py b/frappe/boot.py index f6dfe0bc79..524913059c 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -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]