fix: set default to private for InteractionComposer
Most common use case for event/task is private so that's what should be set here.
This commit is contained in:
parent
f02521bfc5
commit
4f3c9bc91a
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ frappe.views.InteractionComposer = class InteractionComposer {
|
|||
options: "",
|
||||
hidden: 1,
|
||||
},
|
||||
{ label: __("Public"), fieldtype: "Check", fieldname: "public", default: "1" },
|
||||
{ label: __("Public"), fieldtype: "Check", fieldname: "public", default: "0" },
|
||||
{ fieldtype: "Column Break" },
|
||||
{ label: __("Date"), fieldtype: "Datetime", fieldname: "due_date" },
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue