From eacfe974c7f1133a2f4733601e9300152c9be60d Mon Sep 17 00:00:00 2001 From: Sanket Shah <113279972+Sanket322@users.noreply.github.com> Date: Fri, 10 Oct 2025 11:19:24 +0530 Subject: [PATCH] fix: increase label field length to 255 chars Some custom field labels were getting truncated when exceeding 140 characters. This caused issues during customization of complex forms where descriptive labels were required. --- frappe/custom/doctype/custom_field/custom_field.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/custom/doctype/custom_field/custom_field.json b/frappe/custom/doctype/custom_field/custom_field.json index cee9abfa4e..0a97a65c4b 100644 --- a/frappe/custom/doctype/custom_field/custom_field.json +++ b/frappe/custom/doctype/custom_field/custom_field.json @@ -85,6 +85,7 @@ "fieldtype": "Data", "in_filter": 1, "label": "Label", + "length": 255, "no_copy": 1, "oldfieldname": "label", "oldfieldtype": "Data" @@ -468,11 +469,12 @@ "label": "Placeholder" } ], + "grid_page_length": 50, "icon": "fa fa-glass", "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-09-28 20:19:35.935720", + "modified": "2025-10-10 11:10:23.862393", "modified_by": "Administrator", "module": "Custom", "name": "Custom Field", @@ -501,6 +503,7 @@ "write": 1 } ], + "row_format": "Dynamic", "search_fields": "dt,label,fieldtype,options", "sort_field": "creation", "sort_order": "DESC",