Skip to content

Commit

Permalink
fix(text_editor): Use body as bounds to avoid bubble's tooltip clipping
Browse files Browse the repository at this point in the history
  • Loading branch information
cogk committed Dec 22, 2023
1 parent c26ccad commit 7fff79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/public/js/frappe/form/controls/text_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ frappe.ui.form.ControlTextEditor = class ControlTextEditor extends frappe.ui.for
},
theme: this.df.theme || "snow",
readOnly: this.disabled,
bounds: this.quill_container[0],
bounds: document.body,
placeholder: this.df.placeholder || "",
};
}
Expand Down

0 comments on commit 7fff79b

Please sign in to comment.