diff --git a/frappe/website/doctype/web_form_field/web_form_field.py b/frappe/website/doctype/web_form_field/web_form_field.py index 8c6a7023b1..585bc9bd8c 100644 --- a/frappe/website/doctype/web_form_field/web_form_field.py +++ b/frappe/website/doctype/web_form_field/web_form_field.py @@ -19,7 +19,34 @@ class WebFormField(Document): depends_on: DF.Code | None description: DF.Text | None fieldname: DF.Literal[None] - fieldtype: DF.Literal["Attach", "Attach Image", "Check", "Currency", "Color", "Data", "Date", "Datetime", "Duration", "Float", "HTML", "Int", "Link", "Password", "Phone", "Rating", "Select", "Signature", "Small Text", "Text", "Text Editor", "Table", "Time", "Section Break", "Column Break", "Page Break"] + fieldtype: DF.Literal[ + "Attach", + "Attach Image", + "Check", + "Currency", + "Color", + "Data", + "Date", + "Datetime", + "Duration", + "Float", + "HTML", + "Int", + "Link", + "Password", + "Phone", + "Rating", + "Select", + "Signature", + "Small Text", + "Text", + "Text Editor", + "Table", + "Time", + "Section Break", + "Column Break", + "Page Break", + ] hidden: DF.Check label: DF.Data | None mandatory_depends_on: DF.Code | None