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:
Ankush Menat 2023-09-29 15:59:45 +05:30
parent f02521bfc5
commit 4f3c9bc91a

View file

@ -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" },
{