fix(UserSignature): changed field type to TextEditor

This commit is contained in:
Sumit Bhanushali 2024-08-13 14:58:59 +05:30
parent ec00d21925
commit 391e6d1e3b
2 changed files with 4 additions and 5 deletions

View file

@ -400,7 +400,7 @@
},
{
"fieldname": "email_signature",
"fieldtype": "Small Text",
"fieldtype": "Text Editor",
"label": "Email Signature",
"no_copy": 1
},
@ -747,8 +747,7 @@
"description": "Redirect to the selected app after login",
"fieldname": "default_app",
"fieldtype": "Select",
"label": "Default App",
"options": ""
"label": "Default App"
}
],
"icon": "fa fa-user",
@ -811,7 +810,7 @@
"link_fieldname": "user"
}
],
"modified": "2024-08-12 15:23:38.996646",
"modified": "2024-08-13 14:48:15.168516",
"modified_by": "Administrator",
"module": "Core",
"name": "User",

View file

@ -70,7 +70,7 @@ class User(Document):
document_follow_frequency: DF.Literal["Hourly", "Daily", "Weekly"]
document_follow_notify: DF.Check
email: DF.Data
email_signature: DF.SmallText | None
email_signature: DF.TextEditor | None
enabled: DF.Check
first_name: DF.Data
follow_assigned_documents: DF.Check