From 36c553602f89801ad1a0958da702aecf45c2ffed Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 5 Aug 2014 17:40:23 +0530 Subject: [PATCH] [fix] Customize Form: allow changing 'Text' to 'Small Text' --- frappe/core/doctype/customize_form/customize_form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/customize_form/customize_form.py b/frappe/core/doctype/customize_form/customize_form.py index 583e050389..1291ad4ffb 100644 --- a/frappe/core/doctype/customize_form/customize_form.py +++ b/frappe/core/doctype/customize_form/customize_form.py @@ -45,7 +45,7 @@ class CustomizeForm(Document): } allowed_fieldtype_change = (('Currency', 'Float', 'Percent'), ('Small Text', 'Data'), - ('Text', 'Text Editor', 'Code'), ('Data', 'Select')) + ('Text', 'Text Editor', 'Code'), ('Data', 'Select'), ('Text', 'Small Text')) def on_update(self): frappe.db.sql("delete from tabSingles where doctype='Customize Form'")