diff --git a/frappe/public/js/frappe/form/controls/text_editor.js b/frappe/public/js/frappe/form/controls/text_editor.js index 620b962b87..21676f2dda 100644 --- a/frappe/public/js/frappe/form/controls/text_editor.js +++ b/frappe/public/js/frappe/form/controls/text_editor.js @@ -310,7 +310,6 @@ frappe.ui.form.ControlTextEditor = class ControlTextEditor extends frappe.ui.for } set_formatted_input(value) { - console.log(value); if (!this.quill) return; if (value === this.get_input_value()) return; if (!value) { @@ -320,14 +319,12 @@ frappe.ui.form.ControlTextEditor = class ControlTextEditor extends frappe.ui.for } // set html without triggering a focus - console.log(value); const delta = this.quill.clipboard.convert( { html: value, text: "" }, { image: MyImage, } ); - console.log(delta); this.quill.setContents(delta); }