Updated fieldtype from Data to Text for 'description' fieldname
In the database, the field size is defined as Text for Description but in the java script it is being used as Data field. Hence the user are not able to enter the full text when assigning a ToDo to another use. Please accept this change as it will be very helpful for the user. Thanks. Mayur
This commit is contained in:
parent
aee558a461
commit
9cd5c0620f
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ frappe.ui.to_do_dialog = function(opts){
|
|||
{fieldtype:'Link', fieldname:'assign_to', options:'User',
|
||||
label:__("Assign To"),
|
||||
description:__("Add to To Do List Of"), reqd:true},
|
||||
{fieldtype:'Data', fieldname:'description', label:__("Comment"), reqd:true},
|
||||
{fieldtype:'Text', fieldname:'description', label:__("Comment"), reqd:true},
|
||||
{fieldtype:'Check', fieldname:'notify',
|
||||
label:__("Notify by Email"), "default":1},
|
||||
{fieldtype:'Date', fieldname:'date', label: __("Complete By")},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue