From c6371cbdd0ce724b69590bd19478b3a46ef265ab Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 20 Nov 2023 17:29:00 +0530 Subject: [PATCH] fix: increase length for address lines 140 char default limit is often not enough as demonstrated here https://github.com/frappe/frappe/issues/23259 --- frappe/contacts/doctype/address/address.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frappe/contacts/doctype/address/address.json b/frappe/contacts/doctype/address/address.json index 0ec67103a7..54d6b03739 100644 --- a/frappe/contacts/doctype/address/address.json +++ b/frappe/contacts/doctype/address/address.json @@ -51,12 +51,14 @@ "fieldname": "address_line1", "fieldtype": "Data", "label": "Address Line 1", + "length": 240, "reqd": 1 }, { "fieldname": "address_line2", "fieldtype": "Data", - "label": "Address Line 2" + "label": "Address Line 2", + "length": 240 }, { "fieldname": "city", @@ -148,7 +150,7 @@ "icon": "fa fa-map-marker", "idx": 5, "links": [], - "modified": "2023-10-30 05:50:23.912366", + "modified": "2023-11-20 17:28:41.698356", "modified_by": "Administrator", "module": "Contacts", "name": "Address",