diff --git a/frappe/custom/doctype/customize_form/customize_form.js b/frappe/custom/doctype/customize_form/customize_form.js index 92765653df..bb485d96b5 100644 --- a/frappe/custom/doctype/customize_form/customize_form.js +++ b/frappe/custom/doctype/customize_form/customize_form.js @@ -246,7 +246,7 @@ frappe.ui.form.on("Customize Form", { var fields = $.map(frm.doc.fields, function (df) { return frappe.model.is_value_type(df.fieldtype) ? df.fieldname : null; }); - fields = ["", "name", "modified"].concat(fields); + fields = ["", "name", "creation", "modified"].concat(fields); frm.set_df_property("sort_field", "options", fields); } },